Skip to content

Commit

Permalink
Fix brew installations.
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed May 18, 2016
1 parent 3522e0e commit 2403987
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cli/Valet/Brew.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ function installOrFail($formula, array $taps = [])

output('<info>['.$formula.'] is not installed, installing it now via Brew...</info> 🍻');

$this->cli->run('brew install '.$formula, function ($errorOutput) use ($formula) {
$this->cli->runAsUser('brew install '.$formula, function ($exitCode, $errorOutput) use ($formula) {
output($errorOutput);

throw new DomainException('Brew was unable to install ['.$formula.'].');
Expand Down
2 changes: 1 addition & 1 deletion cli/valet.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*/
Container::setInstance(new Container);

$version = '1.1.11';
$version = '1.1.12';

$app = new Application('Laravel Valet', $version);

Expand Down

0 comments on commit 2403987

Please sign in to comment.