diff options
author | John MacFarlane <jgm@berkeley.edu> | 2021-10-23 17:35:17 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2021-10-23 19:03:08 -0700 |
commit | 94bf66c27e4c17202c42d2321a20c4408626d048 (patch) | |
tree | bcb7abd2bb6ca4917d93324ec9dfbdef00a764da /.circleci | |
parent | 844a080d2af35ae70239e714da132900463e726a (diff) | |
download | pandoc-94bf66c27e4c17202c42d2321a20c4408626d048.tar.gz |
CircleCI: use homebrew not curl to install stack.
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index b58f259e6..a6019a6d9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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 |