fixed error-case - not an error when status=1

This commit is contained in:
Ulf Gebhardt 2017-07-24 11:25:49 +02:00
parent f9b9a5ad10
commit c0b6ba477d

View File

@ -198,7 +198,7 @@ class GitRepo {
}
$status = trim(proc_close($resource));
if ($status) throw new \Exception($stderr);
//if ($status) throw new \Exception($stderr);
return $stdout;
}