diff options
author | John MacFarlane <jgm@berkeley.edu> | 2018-09-24 14:37:56 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2018-09-24 14:37:56 -0700 |
commit | a72aed27e2a30923bce39ec8a3ebda6755c264d4 (patch) | |
tree | d70f304f10a55d3d00867547a824379dfaf35394 | |
parent | dc062e3d31fb6fc358d6a8c1d446aceabf6c9b49 (diff) | |
download | pandoc-a72aed27e2a30923bce39ec8a3ebda6755c264d4.tar.gz |
appveyor.yml - another tweak.
-rw-r--r-- | appveyor.yml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/appveyor.yml b/appveyor.yml index f32e868bf..1e8ea84f7 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -60,11 +60,12 @@ build: off install: - choco install wixtoolset %CHOCO_OPTS% - - if "%BUILD_TYPE%" == "stack" ( - choco install haskell-stack %CHOCO_OPTS% - ) else ( - choco install ghc --version %GHC_VERSION% %CHOCO_OPTS% - ) + - | + if "%BUILD_TYPE%" == "stack" ( + choco install haskell-stack %CHOCO_OPTS% + ) else ( + choco install ghc --version %GHC_VERSION% %CHOCO_OPTS% + ) # before_test: |