From 7a6a7f0df5c52b16fc5b47339cfe482dd98904e9 Mon Sep 17 00:00:00 2001 From: Chris Cormack Date: Fri, 5 Aug 2011 08:46:09 +1200 Subject: [PATCH] Fix for a typo I made in the build script --- debian/build-git-snapshot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/build-git-snapshot b/debian/build-git-snapshot index f34b6675a0..cd0545a68d 100755 --- a/debian/build-git-snapshot +++ b/debian/build-git-snapshot @@ -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>; } -- 2.39.5