Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit d372ecf

Browse files
author
Matthias Koeppe
committed
src/bin/sage-env: Put $SAGE_VENV/bin before $SAGE_LOCAL/bin in PATH
1 parent 1a518c0 commit d372ecf

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/bin/sage-env

+3
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,9 @@ fi
301301
if [ -n "$SAGE_LOCAL" ]; then
302302
export PATH="$SAGE_LOCAL/bin:$PATH"
303303
fi
304+
if [ -n "$SAGE_VENV" ]; then
305+
export PATH="$SAGE_VENV/bin:$PATH"
306+
fi
304307
if [ -n "$SAGE_SRC" ]; then
305308
export PATH="$SAGE_SRC/bin:$PATH"
306309
fi

0 commit comments

Comments
 (0)