Skip to content

Commit

Permalink
returning the command we were running makes for easier debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
iamcal committed May 23, 2013
1 parent d282b6c commit 5d1a8bb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions www/include/init.php
Expand Up @@ -269,6 +269,7 @@ function exec_ok($cmd){
exec($cmd, $out, $code);
return array(
'ok' => !$code,
'cmd' => $cmd,
'code' => $code,
'out' => implode('', $out),
);
Expand Down

0 comments on commit 5d1a8bb

Please sign in to comment.