shell output on setup script

This commit is contained in:
Ulf Gebhardt 2015-09-12 03:41:57 +02:00
parent 0e657043f0
commit 04f0f76f2f

View File

@ -25,7 +25,7 @@ class QI {
' --execute="SOURCE ';
$result = array();
foreach($files as $file){
$output = shell_exec($command .$file. '"');
$output = shell_exec($command .$file. '" 2>&1');
$result[] = array($file,$output);}
return $result;
}