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

Commit

Permalink
Restore SAGE_INSTALL_FETCH_ONLY support
Browse files Browse the repository at this point in the history
  • Loading branch information
jdemeyer committed Sep 4, 2015
1 parent 31ff6e7 commit 4eb1aa8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions build/bin/sage-spkg
Original file line number Diff line number Diff line change
Expand Up @@ -178,15 +178,14 @@ fi
# Parse options
INFO=0
FORCE=0
DOWNLOAD_ONLY=0
while true; do
case "$1" in
--info)
INFO=1;;
-f)
FORCE=1;;
-d)
DOWNLOAD_ONLY=1;;
SAGE_INSTALL_FETCH_ONLY=1;;
-s)
export SAGE_KEEP_BUILT_SPKGS=yes;;
-c|--check)
Expand Down Expand Up @@ -398,7 +397,7 @@ if [ -n "$SAGE_SPKG_COPY_UPSTREAM" ]; then
exit 1
fi
fi
if [ $DOWNLOAD_ONLY -ne 0 ]; then
if [ -n "$SAGE_INSTALL_FETCH_ONLY" ]; then
exit 0
fi

Expand Down

0 comments on commit 4eb1aa8

Please sign in to comment.