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
1 changed files with 1 additions and 1 deletions

View File

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