Update for 6.10+ installer URLs (#20)

* Update for 6.10+ installer URLs, fixes #19
This commit is contained in:
Erik Silkensen 2017-08-01 13:08:35 -06:00 committed by Greg Hendershott
parent daf965ac9c
commit 2f4fb6af85

View File

@ -27,7 +27,7 @@ elif [[ "$RACKET_VERSION" = "RELEASE" ]]; then
URL="http://pre-release.racket-lang.org/installers/racket-${MIN}current-x86_64-linux.sh"
elif [[ "$RACKET_VERSION" = 5.9* ]]; then
URL="${DL_BASE}/${RACKET_VERSION}/racket-${MIN}${RACKET_VERSION}-x86_64-linux-ubuntu-quantal.sh"
elif [[ "$RACKET_VERSION" = 6.[0-4]* ]]; then
elif [[ "$RACKET_VERSION" = 6.[0-4] ]] || [[ "$RACKET_VERSION" = 6.[0-4].[0-9] ]]; then
URL="${DL_BASE}/${RACKET_VERSION}/racket-${MIN}${RACKET_VERSION}-x86_64-linux-ubuntu-precise.sh"
elif [[ "$RACKET_VERSION" = 6.* ]]; then
URL="${DL_BASE}/${RACKET_VERSION}/racket-${MIN}${RACKET_VERSION}-x86_64-linux.sh"