File tree Expand file tree Collapse file tree 1 file changed +1
-8
lines changed Expand file tree Collapse file tree 1 file changed +1
-8
lines changed Original file line number Diff line number Diff line change 93
93
94
94
# If the toolchain is available, symlink binaries to the bin dir. This has to be done
95
95
# after drivers-tools is cloned, since we might be using its binary dir.
96
- set -x
97
- ls /Library/Frameworks/Python.Framework/Versions/
98
- ls /Library/Frameworks/Python.Framework/Versions/Current
99
- ls /Library/Frameworks/Python.Framework/Versions/Current/bin
100
- exit 1
101
-
102
96
_bin_path=" "
103
97
if [ " Windows_NT" == " ${OS:- } " ]; then
104
98
_bin_path=" /cygdrive/c/Python/Current/Scripts"
105
- elif [ " $( uname -s) " ! = " Darwin" ]; then
99
+ elif [ " $( uname -s) " = = " Darwin" ]; then
106
100
_bin_path=" /Library/Frameworks/Python.Framework/Versions/Current/bin"
107
101
else
108
102
_bin_path=" /opt/python/Current/bin"
@@ -113,7 +107,6 @@ if [ -d "${_bin_path}" ]; then
113
107
_suffix=" .exe"
114
108
fi
115
109
echo " Symlinking binaries from toolchain"
116
- echo " PATH_EXT=$PATH_EXT "
117
110
mkdir -p $PYMONGO_BIN_DIR
118
111
ln -s ${_bin_path} /just${_suffix} $PYMONGO_BIN_DIR /just${_suffix}
119
112
ln -s ${_bin_path} /uv${_suffix} $PYMONGO_BIN_DIR /uv${_suffix}
You can’t perform that action at this time.
0 commit comments