CircleCI: use homebrew not curl to install stack.

This commit is contained in:
John MacFarlane 2021-10-23 17:35:17 -07:00
parent 844a080d2a
commit 94bf66c27e

View file

@ -14,7 +14,9 @@ jobs:
- stack-dependencies-{{ checksum "stack.yaml" }}
- run:
name: Install stack
command: stack --version || (curl -sSL https://get.haskellstack.org/ | sh -s - -f)
command: |
brew install ghc
brew install haskell-stack
- run:
name: Resolve/Update Dependencies
command: stack --no-terminal setup