Also remove the build directory when deleting the build.

This commit is contained in:
Adirelle 2015-03-13 22:06:21 +01:00
parent 001867d369
commit ffc7a0d9b4

View file

@ -112,6 +112,7 @@ class BuildService
*/
public function deleteBuild(Build $build)
{
$build->removeBuildDirectory();
return $this->buildStore->delete($build);
}
}