We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cf0c13 commit b081169Copy full SHA for b081169
src/bin/sage-env
@@ -121,7 +121,8 @@ if [ "$SAGE_ENV_SOURCED" = "$SAGE_ENV_VERSION" ]; then
121
# Already sourced, nothing to do.
122
return 0
123
fi
124
-export SAGE_ENV_SOURCED="$SAGE_ENV_VERSION"
+# Set SAGE_ENV_SOURCED to the appropriate value at the end of this file, once
125
+# $SAGE_LOCAL, $SAGE_VENV, $SAGE_SRC have been set.
126
127
# The compilers are set in order of priority by
128
# 1) environment variables
@@ -643,3 +644,7 @@ fi
643
644
# our doctests predictable (which was the status quo with earlier
645
# versions of debugpy).
646
export PYDEVD_DISABLE_FILE_VALIDATION=1
647
+
648
+# Finally, set SAGE_ENV_SOURCED as evidence that this script has been
649
+# run successfully.
650
+export SAGE_ENV_SOURCED="6:$SAGE_LOCAL:$SAGE_VENV:$SAGE_SRC"
0 commit comments