Trim stderr in SshConnector.RunCommand return value

feature/node-rewrite
Sven Slootweg 12 years ago
parent 203ce97941
commit eb45a26926

@ -109,6 +109,8 @@ class SshConnector extends CPHPBaseClass
$returndata = json_decode(stream_get_contents($stream));
$returndata->stderr = trim($returndata->stderr);
fclose($stream);
if($returndata->returncode != 0 && $throw_exception === true)

Loading…
Cancel
Save