Check PHP dependencies in daily.sh (#12260)

This commit is contained in:
Jellyfrog
2020-10-29 01:34:42 +01:00
committed by GitHub
parent 4746c3f9d0
commit d82d2f1f19
2 changed files with 17 additions and 2 deletions
+2 -1
View File
@@ -93,7 +93,8 @@ if (! $exec) {
}
if ($exec) {
passthru("$exec " . implode(' ', array_splice($argv, 1)) . "$extra_args 2>&1");
passthru("$exec " . implode(' ', array_splice($argv, 1)) . "$extra_args 2>&1", $exit_code);
exit($exit_code);
} else {
echo "Composer not available, please manually install composer.\n";
}