File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ HERE=$(dirname ${BASH_SOURCE:-$0})
66HERE=" $( cd -- " $HERE " > /dev/null 2>&1 && pwd ) "
77ROOT=$( dirname " $( dirname $HERE ) " )
88
9- # Set up the uv environment if we're running on evergreen .
9+ # Set up the uv environment if indicated .
1010if [ " ${1:- } " == " ensure-uv" ]; then
1111 bash $HERE /setup-uv-python.sh
1212fi
2424# Ensure dependencies are installed.
2525bash $HERE /install-dependencies.sh
2626
27- # Only run the next part if not running on CI.
28- if [ -z " ${CI:- } " ]; then
27+ # Only run the next part if not running on CI and there is a git checkout .
28+ if [ -z " ${CI:- } " ] && [ -f $HERE /.git ] ; then
2929 # Add the default install path to the path if needed.
3030 if [ -z " ${PYMONGO_BIN_DIR:- } " ]; then
3131 export PATH=" $PATH :$HOME /.local/bin"
You can’t perform that action at this time.
0 commit comments