2020-04-15 07:45:18 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -eux
|
|
|
|
|
|
|
|
. "$( cd "$(dirname "$0")" ; pwd -P )/../../ghcup_env"
|
|
|
|
|
2020-05-01 14:27:27 +00:00
|
|
|
mkdir -p "${TMPDIR}"
|
|
|
|
|
2021-06-09 17:03:48 +00:00
|
|
|
if [ $ARCH = 'ARM64' ] ; then
|
2021-06-11 20:17:18 +00:00
|
|
|
export PATH="/opt/homebrew/opt/llvm/bin:$PATH"
|
2021-06-11 09:52:20 +00:00
|
|
|
curl -sSfL https://downloads.haskell.org/~ghcup/0.1.15.1/aarch64-apple-darwin-ghcup-0.1.15.1 > ./ghcup-bin
|
2021-06-11 09:52:20 +00:00
|
|
|
chmod +x ghcup-bin
|
2021-06-09 17:03:48 +00:00
|
|
|
else
|
|
|
|
curl -sSfL https://downloads.haskell.org/~ghcup/x86_64-apple-darwin-ghcup > ./ghcup-bin
|
2021-06-11 09:52:20 +00:00
|
|
|
chmod +x ghcup-bin
|
|
|
|
./ghcup-bin upgrade -i -f
|
2021-06-09 17:03:48 +00:00
|
|
|
fi
|
2021-06-11 09:52:20 +00:00
|
|
|
|
|
|
|
./ghcup-bin install ${GHC_VERSION}
|
|
|
|
./ghcup-bin set ${GHC_VERSION}
|
|
|
|
./ghcup-bin install-cabal ${CABAL_VERSION}
|
2020-04-15 07:45:18 +00:00
|
|
|
|
|
|
|
exit 0
|