Skip to content

Commit

Permalink
install.sh: Put standard PATH directories in front
Browse files Browse the repository at this point in the history
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 <marcan@marcan.st>
  • Loading branch information
marcan committed Mar 20, 2022
1 parent 3738ea1 commit 8cd5d3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export DYLD_LIBRARY_PATH=$PWD/Frameworks/Python.framework/Versions/Current/lib
export DYLD_FRAMEWORK_PATH=$PWD/Frameworks
python=Frameworks/Python.framework/Versions/3.9/bin/python3.9
export SSL_CERT_FILE=$PWD/Frameworks/Python.framework/Versions/Current/etc/openssl/cert.pem
export PATH="$PWD/bin:$PATH"
export PATH="$PWD/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:$PATH"

arch=

Expand Down

0 comments on commit 8cd5d3b

Please sign in to comment.