Skip to content

Commit

Permalink
build.sh: use latest curator patched for ghc-9.10
Browse files Browse the repository at this point in the history
  • Loading branch information
juhp committed Dec 10, 2024
1 parent ebd6da6 commit 73bf1d7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion automated/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,13 @@ BINDIR=$(cd $ROOT/work/bin ; pwd)
cd $BINDIR
rm -f curator stack *.bz2

curl -L "https://github.com/commercialhaskell/curator/releases/download/commit-54cc5a95a7e29550e0fd7a48b24ddad105d223b2/curator.bz2" | bunzip2 > curator
if [ $SHORTNAME = "lts" ]; then
# drop for lts24 at least if not before
curl -L "https://github.com/commercialhaskell/curator/releases/download/commit-54cc5a95a7e29550e0fd7a48b24ddad105d223b2/curator.bz2" | bunzip2 > curator
else
# needed for ghc-9.10
curl -L "https://github.com/commercialhaskell/curator/releases/download/commit-6689440033b12182c0853bdd23880a84849eb6b2/curator.bz2" | bunzip2 > curator
fi
chmod +x curator

STACK_VERSION=3.1.1
Expand Down

0 comments on commit 73bf1d7

Please sign in to comment.