Skip to content

Commit 8cd5d3b

Browse files
committed
install.sh: Put standard PATH directories in front
Apparently some people are getting xattr shipped with Python.framework in front of the system xattr, and that breaks the stub. Let's make sure nothing overrides standard system binaries. Fixes: #30 Signed-off-by: Hector Martin <[email protected]>
1 parent 3738ea1 commit 8cd5d3b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export DYLD_LIBRARY_PATH=$PWD/Frameworks/Python.framework/Versions/Current/lib
1010
export DYLD_FRAMEWORK_PATH=$PWD/Frameworks
1111
python=Frameworks/Python.framework/Versions/3.9/bin/python3.9
1212
export SSL_CERT_FILE=$PWD/Frameworks/Python.framework/Versions/Current/etc/openssl/cert.pem
13-
export PATH="$PWD/bin:$PATH"
13+
export PATH="$PWD/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:$PATH"
1414

1515
arch=
1616

0 commit comments

Comments
 (0)