@@ -1,6 +1,11 @@
#!/bin/bash
set -xe
+# optionally opt out of virtualenv creation
+if [ "x$SENTRY_NO_VIRTUALENV_CREATION" == "x1" ]; then
+ exit 0
+fi
+
# if we already have a venv, we can leave
if .venv/bin/python --version &> /dev/null; then
exit 0