Skip to content

Commit

Permalink
Add no-interaction flag to composer install (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
acbramley authored and pingers committed Aug 31, 2018
1 parent 6ce5d75 commit 4e7e6b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RoboFileBase.php
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ public function devComposerValidate() {
* Additional flags to pass to the composer install command.
*/
public function buildMake($flags = '') {
$successful = $this->_exec("$this->composer_bin --no-progress $flags install")->wasSuccessful();
$successful = $this->_exec("$this->composer_bin --no-progress --no-interaction $flags install")->wasSuccessful();

$this->checkFail($successful, "Composer install failed.");
}
Expand Down

0 comments on commit 4e7e6b0

Please sign in to comment.