Skip to content

Commit 2403987

Browse files
committed
Fix brew installations.
1 parent 3522e0e commit 2403987

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cli/Valet/Brew.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ function installOrFail($formula, array $taps = [])
7474

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

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

8080
throw new DomainException('Brew was unable to install ['.$formula.'].');

cli/valet.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
*/
1919
Container::setInstance(new Container);
2020

21-
$version = '1.1.11';
21+
$version = '1.1.12';
2222

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

0 commit comments

Comments
 (0)