diff options
author | John MacFarlane <jgm@berkeley.edu> | 2018-09-24 14:04:56 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2018-09-24 14:04:56 -0700 |
commit | dc062e3d31fb6fc358d6a8c1d446aceabf6c9b49 (patch) | |
tree | d3d45e9e243039f6d68f093bade7afb158279d02 | |
parent | c307bfb953307a9d026a1b37333cf1aa4a233915 (diff) | |
download | pandoc-dc062e3d31fb6fc358d6a8c1d446aceabf6c9b49.tar.gz |
appveyor.yml - fix env variables.
-rw-r--r-- | appveyor.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml index 955918f1d..f32e868bf 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -60,7 +60,7 @@ build: off install: - choco install wixtoolset %CHOCO_OPTS% - - if "%BUILD_TYPE" == "stack" ( + - if "%BUILD_TYPE%" == "stack" ( choco install haskell-stack %CHOCO_OPTS% ) else ( choco install ghc --version %GHC_VERSION% %CHOCO_OPTS% @@ -72,7 +72,7 @@ test_script: # The ugly echo "" hack is to avoid complaints about 0 being an invalid file # descriptor - | - if "%BUILD_TYPE" == "stack" ( + if "%BUILD_TYPE%" == "stack" ( stack --version stack path echo "" | stack clean |