diff options
author | John MacFarlane <jgm@berkeley.edu> | 2019-03-27 11:24:50 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-03-27 11:24:50 -0700 |
commit | f5f8f903e17df755a90f8e1df12f7b4f202a3fcc (patch) | |
tree | 4ec4649d925c196e967dc33b50c320a68d152fab | |
parent | 3c88a2bf6082dc3af93d0fe65ec63101ddc069fb (diff) | |
download | pandoc-f5f8f903e17df755a90f8e1df12f7b4f202a3fcc.tar.gz |
circleci: recognize both Warning: and warning:.
-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 a0a51ffa4..ecf6edbf8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -63,7 +63,7 @@ commands: # this is to work around the fact that cabal v2 doesn't allow # us to use -Werror for just local build: # https://github.com/haskell/cabal/issues/4247 - ! grep -q "warning:" build.log + ! grep -q "[Ww]arning:" build.log cabal v2-test -w ghc-<< parameters.ghcversion >> -j1 --disable-optimization --enable-tests cabal v2-haddock -w ghc-<< parameters.ghcversion >> cabal check |