mirror of
https://github.com/NixOS/nix
synced 2025-06-27 21:01:16 +02:00
* Make check fixes.
This commit is contained in:
parent
65b6c8ab4c
commit
c3981d81f6
5 changed files with 13 additions and 15 deletions
|
@ -19,8 +19,8 @@ $binDir = "@bindir@" unless defined $binDir;
|
|||
my $libexecDir = $ENV{"NIX_LIBEXEC_DIR"};
|
||||
$libexecDir = "@libexecdir@" unless defined $libexecDir;
|
||||
|
||||
my $localStateDir = $ENV{"NIX_LOCALSTATE_DIR"};
|
||||
$localStateDir = "@localstatedir@" unless defined $localStateDir;
|
||||
my $stateDir = $ENV{"NIX_STATE_DIR"};
|
||||
$stateDir = "@localstatedir@/nix" unless defined $stateDir;
|
||||
|
||||
|
||||
# Obtain URLs either from the command line or from a configuration file.
|
||||
|
@ -49,7 +49,7 @@ sub processURL {
|
|||
or die "cannot hash `$manifest'";
|
||||
chomp $hash;
|
||||
|
||||
my $finalPath = "$localStateDir/nix/manifests/$baseName-$hash.nixmanifest";
|
||||
my $finalPath = "$stateDir/manifests/$baseName-$hash.nixmanifest";
|
||||
|
||||
system("mv '$manifest' '$finalPath'") == 0
|
||||
or die "cannot move `$manifest' to `$finalPath";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue