Skip to content

Commit b081169

Browse files
committed
Do not run sage-env more than once, for real.
1 parent 1cf0c13 commit b081169

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/bin/sage-env

+6-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,8 @@ if [ "$SAGE_ENV_SOURCED" = "$SAGE_ENV_VERSION" ]; then
121121
# Already sourced, nothing to do.
122122
return 0
123123
fi
124-
export SAGE_ENV_SOURCED="$SAGE_ENV_VERSION"
124+
# 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.
125126

126127
# The compilers are set in order of priority by
127128
# 1) environment variables
@@ -643,3 +644,7 @@ fi
643644
# our doctests predictable (which was the status quo with earlier
644645
# versions of debugpy).
645646
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

Comments
 (0)