From 6de5d534164d95b0c004cd4b2ed9bf97f9903029 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 24 Apr 2012 12:56:30 +0200 Subject: [PATCH] Fix a warning in the build hook about $progressViewer --- scripts/build-remote.pl.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build-remote.pl.in b/scripts/build-remote.pl.in index fca00241bf..da5561cd21 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;