diff options
-rw-r--r-- | appveyor.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/appveyor.yml b/appveyor.yml index 03075c698..05aa0c268 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -8,8 +8,8 @@ environment: cache: - "c:\\sr" # stack root, short paths == fewer problems - '%LOCALAPPDATA%\Programs\stack' # even less to install... - -build: off + +# build: off # this disables automatic builds install: - curl -ostack.zip -L --insecure http://www.stackage.org/stack/windows-i386 @@ -30,7 +30,8 @@ test_script: - echo "" | stack --no-terminal test after_test: - - ps: 7z a "pandoc.zip" "$(.\\stack.exe path --local-install-root)\\bin\\pandoc*.exe" + - ps: | + 7z a pandoc.zip $(.\stack.exe path --local-install-root)\bin\pandoc*.exe artifacts: - path: pandoc.zip |