Fix a typo in pandora_exec.

This commit is contained in:
Ramon Novoa 2018-11-21 16:19:27 +01:00
parent 7be5225429
commit 2480de2f9f

View File

@ -36,7 +36,7 @@ my @opts = @ARGV;
my $timeout = shift(@opts); my $timeout = shift(@opts);
my $command; my $command;
foreach my $arg (@opts) { foreach my $arg (@opts) {
$command .= $^O ne 'MSWin32' ? quotemeta ($arg) . ' ' : '"' . $command . '" '; $command .= $^O ne 'MSWin32' ? quotemeta ($arg) . ' ' : '"' . $arg . '" ';
} }
chomp ($command); chomp ($command);
my $output = ''; my $output = '';