From e029117c3ee76697bbaa5b941ea6efbaf8f338db Mon Sep 17 00:00:00 2001 From: Julian Ospald Date: Fri, 10 Sep 2021 19:48:42 +0200 Subject: [PATCH] Fix freebsd runner getting stuck (maybe) --- .gitlab/before_script/freebsd/install_deps.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab/before_script/freebsd/install_deps.sh b/.gitlab/before_script/freebsd/install_deps.sh index fcd89aa..c35fe9d 100755 --- a/.gitlab/before_script/freebsd/install_deps.sh +++ b/.gitlab/before_script/freebsd/install_deps.sh @@ -11,9 +11,9 @@ mkdir -p "${TMPDIR}" curl -sSfL https://downloads.haskell.org/~ghcup/x86_64-portbld-freebsd-ghcup > ./ghcup-bin chmod +x ghcup-bin -./ghcup-bin upgrade -i -f -./ghcup-bin install ${GHC_VERSION} -./ghcup-bin set ${GHC_VERSION} -./ghcup-bin install-cabal ${CABAL_VERSION} +./ghcup-bin -v upgrade -i -f +./ghcup-bin -v install ${GHC_VERSION} +./ghcup-bin -v set ${GHC_VERSION} +./ghcup-bin -v install-cabal ${CABAL_VERSION} exit 0