Files
mongo/evergreen/prelude_python.sh
Andrew Morrow 7657e615d2 SERVER-62994 Use v4 toolchain for everything except clang format
It has been a pleasure working here and quite the wild ride.

Good luck everyone.
2022-12-13 23:03:13 +00:00

14 lines
420 B
Bash

if [ "Windows_NT" = "$OS" ]; then
python='/cygdrive/c/python/python37/python.exe'
else
if [ -f /opt/mongodbtoolchain/v4/bin/python3 ]; then
python="/opt/mongodbtoolchain/v4/bin/python3"
elif [ -f "$(which python3)" ]; then
echo "Could not find mongodbtoolchain python, using system python $(which python3)" > 2
python=$(which python3)
else
echo "Could not find python3." > 2
return 1
fi
fi