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

Commit

Permalink
src/bin/sage-env: Put $SAGE_VENV/bin before $SAGE_LOCAL/bin in PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koeppe committed Nov 13, 2020
1 parent 1a518c0 commit d372ecf
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/bin/sage-env
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,9 @@ fi
if [ -n "$SAGE_LOCAL" ]; then
export PATH="$SAGE_LOCAL/bin:$PATH"
fi
if [ -n "$SAGE_VENV" ]; then
export PATH="$SAGE_VENV/bin:$PATH"
fi
if [ -n "$SAGE_SRC" ]; then
export PATH="$SAGE_SRC/bin:$PATH"
fi
Expand Down

0 comments on commit d372ecf

Please sign in to comment.