From 2f4fb6af85e45b88dc97a8aee217fb6202f3fd75 Mon Sep 17 00:00:00 2001 From: Erik Silkensen Date: Tue, 1 Aug 2017 13:08:35 -0600 Subject: [PATCH] Update for 6.10+ installer URLs (#20) * Update for 6.10+ installer URLs, fixes #19 --- install-racket.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-racket.sh b/install-racket.sh index 14cf1e4..83143b0 100755 --- a/install-racket.sh +++ b/install-racket.sh @@ -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"