Reverted to system() which preserves piping.
This commit is contained in:
parent
1c1e9cda7c
commit
f7ed81d3ab
@ -11,11 +11,10 @@ require 'helpers.pm';
|
||||
chdir('../../../OUTPUT');
|
||||
|
||||
if ($^O eq "linux") {
|
||||
$output = `python3.1 build.py 2>&1`;
|
||||
system("python3.1 build.py 2>&1");
|
||||
} else {
|
||||
$output = `C:\\Python31\\python.exe build.py 2>&1`;
|
||||
system("C:\\Python31\\python.exe build.py 2>&1");
|
||||
}
|
||||
print($output);
|
||||
|
||||
if ($? != 0)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user