From dbb4db98352635c416e9ca55ecf71f2331a85488 Mon Sep 17 00:00:00 2001 From: Junyoung Clare Jang Date: Tue, 12 May 2020 11:48:39 -0400 Subject: [PATCH] Update Haskell tool Stack (#860) * Update Haskell tool Stack * Update haskell script to install stack from get.haskellstack.org --- images/linux/scripts/installers/haskell.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/images/linux/scripts/installers/haskell.sh b/images/linux/scripts/installers/haskell.sh index 159c0cdea..49b9c65f1 100644 --- a/images/linux/scripts/installers/haskell.sh +++ b/images/linux/scripts/installers/haskell.sh @@ -26,8 +26,8 @@ apt-get install -y \ cabal-install-3.0 \ cabal-install-3.2 -# Install haskell stack, pinned to v2.1.3 -curl -sSL https://raw.githubusercontent.com/commercialhaskell/stack/v2.1.3/etc/scripts/get-stack.sh | sh +# Install the latest stable release of haskell stack +curl -sSL https://get.haskellstack.org/ | sh # Run tests to determine that the software installed as expected echo "Testing to make sure that script performed as expected, and basic scenarios work"