summaryrefslogtreecommitdiff
path: root/etc/evergreen.yml
diff options
context:
space:
mode:
Diffstat (limited to 'etc/evergreen.yml')
-rw-r--r--etc/evergreen.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/evergreen.yml b/etc/evergreen.yml
index 881604a07dc..a7dbb0bb24a 100644
--- a/etc/evergreen.yml
+++ b/etc/evergreen.yml
@@ -1051,9 +1051,9 @@ functions:
# python path as 'C:\python\python_version'
python_loc=$(cygpath -w $python_loc)
venv_dir="$(cygpath -w "$venv_dir")"
- "$virtualenv_loc" --python "$python_loc" --system-site-packages "$venv_dir"
+ "$virtualenv_loc" --python "$python_loc" "$venv_dir"
else
- "$python_loc" -m venv --system-site-packages "$venv_dir"
+ "$python_loc" -m venv "$venv_dir"
fi
export VIRTUAL_ENV_DISABLE_PROMPT=yes