diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2009-11-17T16·22+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2009-11-17T16·22+0000 |
commit | 997db91e07882f0555e224a2687189a362567577 (patch) | |
tree | 7302e4559bbeab03111901a89fddc4b8831f8afc /scripts | |
parent | 3392d32e8b4202da8d3b013edd6f585e98aa7b02 (diff) |
* Don't pass -K. It should really inherit the setting of the calling
Nix though.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build-remote.pl.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build-remote.pl.in b/scripts/build-remote.pl.in index 65b27886054e..36947c6a0604 100755 --- a/scripts/build-remote.pl.in +++ b/scripts/build-remote.pl.in @@ -234,7 +234,7 @@ my $buildFlags = "--max-silent-time $maxSilentTime"; # connection dies. Without it, the remote process might continue to # run indefinitely (that is, until it next tries to write to # stdout/stderr). -if (system("ssh -tt $sshOpts $hostName 'nix-store --realise -K $buildFlags $drvPath > /dev/null'") != 0) { +if (system("ssh -tt $sshOpts $hostName 'nix-store --realise $buildFlags $drvPath > /dev/null'") != 0) { # If we couldn't run ssh or there was an ssh problem (indicated by # exit code 255), then we return exit code 1; otherwise we assume # that the builder failed, which we indicated to Nix using exit |