Compare commits

...

2 Commits

Author SHA1 Message Date
Suzanne Soy
62774d80d8 non-cs version is not available from https://www.cs.utah.edu/ for 8.0 2021-02-26 21:30:21 +00:00
Suzanne Soy
a922a8b7f1
Added support for Racket 8.0 2021-02-26 09:20:35 -05:00

View File

@ -45,6 +45,7 @@ fi
# it work.
DL_BASE="https://www.cs.utah.edu/plt/installers"
MIRROR_DL_BASE="https://mirror.racket-lang.org/installers"
# In theory either NWU or Utah should work for downloading snapshot
# a.k.a. HEAD builds. In practice, it varies from time to time.
@ -81,6 +82,8 @@ elif [[ "$RACKET_VERSION" = 6.* ]]; then
URL="${DL_BASE}/${RACKET_VERSION}/racket-${MIN}${RACKET_VERSION}-x86_64-linux${RACKET_NATIPKG}.sh"
elif [[ "$RACKET_VERSION" = 7.* ]]; then
URL="${DL_BASE}/${RACKET_VERSION}/racket-${MIN}${RACKET_VERSION}-x86_64-linux${RACKET_NATIPKG}${RACKET_CS}.sh"
elif [[ "$RACKET_VERSION" = 8.* ]]; then
URL="${MIRROR_DL_BASE}/${RACKET_VERSION}/racket-${MIN}${RACKET_VERSION}-x86_64-linux${RACKET_NATIPKG}${RACKET_CS}.sh"
else
echo "ERROR: Unsupported version ${RACKET_VERSION}"
exit 1