diff options
author | John MacFarlane <jgm@berkeley.edu> | 2020-12-29 15:31:29 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2020-12-29 15:41:18 -0800 |
commit | dcbd8d326cce4960e0d736e25e7d00f9057a1fc2 (patch) | |
tree | f5927c38e79e9fb7d6fb04bce237c06daf71d80d | |
parent | 886faa3cbcf1840e024bb9c146ff38f8f202b757 (diff) | |
download | pandoc-dcbd8d326cce4960e0d736e25e7d00f9057a1fc2.tar.gz |
CircleCI: fix stack installation.
homebrew no longer has a bottle for haskell-stack for the
old macOS version we're building on.
-rw-r--r-- | .circleci/config.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 8fa83e5ab..5f569da65 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -14,7 +14,7 @@ jobs: - stack-dependencies-{{ checksum "stack.yaml" }} - run: 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: name: Resolve/Update Dependencies command: stack --no-terminal setup |