diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-04-24T10·56+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-04-24T10·56+0200 |
commit | 6de5d534164d95b0c004cd4b2ed9bf97f9903029 (patch) | |
tree | 054ca18895889981f4fa905c62ea1bd6700f271e /scripts/build-remote.pl.in | |
parent | 6387830c3b12722e5962a99aa81f225ea0830076 (diff) |
Fix a warning in the build hook about $progressViewer
Diffstat (limited to 'scripts/build-remote.pl.in')
-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 fca00241bf12..da5561cd2199 100755 --- a/scripts/build-remote.pl.in +++ b/scripts/build-remote.pl.in @@ -248,7 +248,7 @@ if ($@) { print STDERR "somebody is hogging $uploadLock, continuing...\n"; unlink $uploadLock; } -Nix::CopyClosure::copyTo($hostName, [ @sshOpts ], [ $drvPath, @inputs ], "", "", 0, 0, $maybeSign ne ""); +Nix::CopyClosure::copyTo($hostName, [ @sshOpts ], [ $drvPath, @inputs ], "", "", 0, 0, $maybeSign ne "", ""); close UPLOADLOCK; |