CircleCI: fix stack installation.
homebrew no longer has a bottle for haskell-stack for the old macOS version we're building on.
This commit is contained in:
parent
886faa3cbc
commit
dcbd8d326c
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ jobs:
|
||||||
- stack-dependencies-{{ checksum "stack.yaml" }}
|
- stack-dependencies-{{ checksum "stack.yaml" }}
|
||||||
- run:
|
- run:
|
||||||
name: Install stack
|
name: Install stack
|
||||||
command: stack --version || brew update && brew install haskell-stack
|
command: stack --version || (curl -sSL https://get.haskellstack.org/ | sh -s - -f)
|
||||||
- run:
|
- run:
|
||||||
name: Resolve/Update Dependencies
|
name: Resolve/Update Dependencies
|
||||||
command: stack --no-terminal setup
|
command: stack --no-terminal setup
|
||||||
|
|
Loading…
Reference in a new issue