1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46:
<?php
namespace Deliverist\Builder\Commands;
use Deliverist\Builder\Builder;
use Deliverist\Builder\InvalidStateException;
use Deliverist\Builder\ICommand;
class BowerInstall implements ICommand
{
private $executable = 'bower';
public function setExecutable($executable)
{
$this->executable = $executable;
return $this;
}
public function run(Builder $builder, $file = 'bower.json')
{
$builder->log('Running `bower install`');
$result = $builder->execute(array(
$this->executable,
'install',
), dirname($file));
$builder->logDebug($result->toText());
if (!$result->isOk()) {
throw new InvalidStateException('Bower install failed.');
}
}
}