mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
Fixed composer error
This commit is contained in:
@@ -390,8 +390,9 @@ class Builds extends Action
|
||||
$response = null;
|
||||
$err = null;
|
||||
|
||||
if ($build->getAttribute('status') === 'cancelled')
|
||||
if ($build->getAttribute('status') === 'cancelled') {
|
||||
return;
|
||||
}
|
||||
|
||||
Co::join([
|
||||
Co\go(function () use ($executor, &$response, $project, $deployment, $source, $function, $runtime, $vars, $command, &$err) {
|
||||
@@ -459,8 +460,9 @@ class Builds extends Action
|
||||
]);
|
||||
|
||||
if ($err) {
|
||||
if ($build->getAttribute('status') === 'cancelled')
|
||||
if ($build->getAttribute('status') === 'cancelled') {
|
||||
return;
|
||||
}
|
||||
throw $err;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user