diff options
author | John MacFarlane <jgm@berkeley.edu> | 2018-08-16 22:04:21 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2018-08-16 22:04:21 -0700 |
commit | 0a93d33566c9ee9e11a6b8951c9b847c581df3d9 (patch) | |
tree | ee543bfe355b179c514fa9ebbd10994ce7f50f76 | |
parent | 0d9c0b1b5ba3f6e70c52bdde283865504436fe27 (diff) | |
download | pandoc-0a93d33566c9ee9e11a6b8951c9b847c581df3d9.tar.gz |
appveyor.yml: use regular stack.yaml, not stack.lts11.yaml.
-rw-r--r-- | appveyor.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml index bc0dd69fa..e7fc9b0cd 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -53,10 +53,10 @@ test_script: # The ugly echo "" hack is to avoid complaints about 0 being an invalid file # descriptor - | - %STACK% setup --stack-yaml stack.lts11.yaml > nul + %STACK% setup > nul %STACK% path echo "" | %STACK% clean - echo "" | %STACK% install --stack-yaml stack.lts11.yaml %STACK_BUILD_OPTS% pandoc pandoc-citeproc %STACK_FLAGS% + echo "" | %STACK% install %STACK_BUILD_OPTS% pandoc pandoc-citeproc %STACK_FLAGS% after_test: # .\ in the stack commandline seems to be .\windows\ (where the stack-appveyor.yaml is) |