diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-09-25T10·44+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-09-25T10·44+0000 |
commit | 68ae953d8a492061bcda7c4d7bf2f5b9432f791c (patch) | |
tree | d5e35a4fe76bf043539d8a49bb00e9e220fa364c /scripts/nix-pull.in | |
parent | 76c971009149f73453ccec66392625f2b67f8785 (diff) |
* Clean up calls to system().
Diffstat (limited to 'scripts/nix-pull.in')
-rw-r--r-- | scripts/nix-pull.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/nix-pull.in b/scripts/nix-pull.in index 67a7838f19f0..0af036f6f302 100644 --- a/scripts/nix-pull.in +++ b/scripts/nix-pull.in @@ -56,7 +56,7 @@ sub processURL { my $finalPath = "$stateDir/manifests/$baseName-$hash.nixmanifest"; - system("mv -f '$manifest' '$finalPath'") == 0 + system ("@coreutils@/mv", "-f", "$manifest", "$finalPath") == 0 or die "cannot move `$manifest' to `$finalPath"; } |