From fffaa65b7fca60a44877cbc1bde06be6e8dd0cd5 Mon Sep 17 00:00:00 2001 From: Julian Ospald Date: Wed, 4 Jan 2023 00:57:51 +0800 Subject: [PATCH] Don't install stack by default in CI --- .github/scripts/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/common.sh b/.github/scripts/common.sh index d42830d..1aa46ef 100644 --- a/.github/scripts/common.sh +++ b/.github/scripts/common.sh @@ -151,7 +151,7 @@ install_ghcup() { chmod +x ghcup mv ghcup "$HOME/.local/bin/ghcup" else - curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | BOOTSTRAP_HASKELL_NONINTERACTIVE=1 BOOTSTRAP_HASKELL_MINIMAL=1 sh + curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | BOOTSTRAP_HASKELL_NONINTERACTIVE=1 BOOTSTRAP_HASKELL_MINIMAL=1 BOOTSTRAP_HASKELL_INSTALL_NO_STACK=yes sh fi }