-
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
On Apple Silicon Macs, Homebrew installs to /opt/homebrew. Fixes #160
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3253,7 +3253,7 @@ The Python Package Index is very slow due to a lack on API and pagination. A min | |
<key>variables</key> | ||
<dict> | ||
<key>PATH</key> | ||
<string>/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin</string> | ||
<string>/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:${PATH}</string> | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
jeffbyrnes
Author
Collaborator
|
||
<key>XDEBUG_TRIGGER</key> | ||
<string>1</string> | ||
</dict> | ||
|
You’re trying to do shell expansion inside a plist. The result is adding the literal string
${PATH}
to yourPATH
, which is not what you want. Simply remove:${PATH}
and it’ll work, the rest is enough.