diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2007-03-27T09·53+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2007-03-27T09·53+0000 |
commit | efd31139dfd07600c909fa14870c82d90c6ca9de (patch) | |
tree | be62d37aad3d83139c48d5390e9972751ecb93cf | |
parent | d303b389a9dbd44fe60deba5e98e68ec98bdddd3 (diff) |
* Forgot a @bindir@.
-rw-r--r-- | scripts/nix-copy-closure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/nix-copy-closure.in b/scripts/nix-copy-closure.in index 511f207f1b26..aff62fb8ee6d 100644 --- a/scripts/nix-copy-closure.in +++ b/scripts/nix-copy-closure.in @@ -142,7 +142,7 @@ else { # Copy FROM the remote machine. if (scalar @missing > 0) { my $extraOpts = ""; $extraOpts .= "--sign" if $sign == 1; - system("ssh @sshOpts $sshHost 'nix-store --export $extraOpts @missing | $compressor' | $decompressor | nix-store --import") == 0 + system("ssh @sshOpts $sshHost 'nix-store --export $extraOpts @missing | $compressor' | $decompressor | @bindir@/nix-store --import") == 0 or die "copying store paths to remote machine `$sshHost' failed: $?"; } |