We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3522e0e commit 2403987Copy full SHA for 2403987
cli/Valet/Brew.php
@@ -74,7 +74,7 @@ function installOrFail($formula, array $taps = [])
74
75
output('<info>['.$formula.'] is not installed, installing it now via Brew...</info> 🍻');
76
77
- $this->cli->run('brew install '.$formula, function ($errorOutput) use ($formula) {
+ $this->cli->runAsUser('brew install '.$formula, function ($exitCode, $errorOutput) use ($formula) {
78
output($errorOutput);
79
80
throw new DomainException('Brew was unable to install ['.$formula.'].');
cli/valet.php
@@ -18,7 +18,7 @@
18
*/
19
Container::setInstance(new Container);
20
21
-$version = '1.1.11';
+$version = '1.1.12';
22
23
$app = new Application('Laravel Valet', $version);
24
0 commit comments