Skip to content

Commit 5389c3d

Browse files
committed
cleanup
1 parent e5ab274 commit 5389c3d

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

.evergreen/scripts/configure-env.sh

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -93,16 +93,10 @@ EOT
9393

9494
# If the toolchain is available, symlink binaries to the bin dir. This has to be done
9595
# 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-
10296
_bin_path=""
10397
if [ "Windows_NT" == "${OS:-}" ]; then
10498
_bin_path="/cygdrive/c/Python/Current/Scripts"
105-
elif [ "$(uname -s)" != "Darwin" ]; then
99+
elif [ "$(uname -s)" == "Darwin" ]; then
106100
_bin_path="/Library/Frameworks/Python.Framework/Versions/Current/bin"
107101
else
108102
_bin_path="/opt/python/Current/bin"
@@ -113,7 +107,6 @@ if [ -d "${_bin_path}" ]; then
113107
_suffix=".exe"
114108
fi
115109
echo "Symlinking binaries from toolchain"
116-
echo "PATH_EXT=$PATH_EXT"
117110
mkdir -p $PYMONGO_BIN_DIR
118111
ln -s ${_bin_path}/just${_suffix} $PYMONGO_BIN_DIR/just${_suffix}
119112
ln -s ${_bin_path}/uv${_suffix} $PYMONGO_BIN_DIR/uv${_suffix}

0 commit comments

Comments
 (0)