Fix for a typo I made in the build script
authorChris Cormack <chrisc@catalyst.net.nz>
Thu, 4 Aug 2011 20:46:09 +0000 (08:46 +1200)
committerChris Cormack <chrisc@catalyst.net.nz>
Thu, 4 Aug 2011 20:46:09 +0000 (08:46 +1200)
debian/build-git-snapshot

index f34b667..cd0545a 100755 (executable)
@@ -53,7 +53,7 @@ sub sys_command_output {
 
     print "$command\n" if $debug;
     my $command_output;
-    open($command_output, "$command"," |")
+    open($command_output, "-|", "$command ")
       or die qq{Cannot execute "$command": $!"};
     return map { chomp; $_ } <$command_output>;
 }