1
0
mirror of https://github.com/hauke68/Magallanes.git synced 2025-10-14 09:10:18 +02:00

Merge pull request #172 from dmotylev/master

fix: DeployCommand does not fail after failed "Deployment Task"
This commit is contained in:
Andrés Montañez 2015-01-09 20:30:53 -02:00
commit 755fe138ad

View File

@ -203,6 +203,10 @@ class DeployCommand extends AbstractCommand implements RequiresEnvironment
$exitCode = 0;
}
if (self::$deployStatus === self::FAILED) {
$exitCode = 1;
}
return $exitCode;
}