summaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-09-27 20:37:39 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2015-09-27 20:37:39 -0700
commit057c75465d52606d2cb580f093e8c2876dc6e924 (patch)
tree2a31b58b2593be839fc569d7221615b55e361f15 /appveyor.yml
parent3dcadf7ed9d2230a5b10e61db1516db764a46f9b (diff)
appveyor.yml: put whole for loop on one line.
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml5
1 files changed, 1 insertions, 4 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 6fb60550d..6da9dae35 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -28,10 +28,7 @@ after_build:
.\.cabal-sandbox\bin\pandoc.exe -s --template data\templates\default.html -S README -o README.html
.\.cabal-sandbox\bin\pandoc.exe -s --template data\templates\default.rtf COPYING -t rtf -S -o COPYING.rtf
copy COPYRIGHT COPYRIGHT.txt
- for /f "tokens=2 delims= " %%a in ('.\.cabal-sandbox\bin\pandoc --version') do (
- set "VERSION=%%a"
- goto :next
- )
+ for /f "tokens=2 delims= " %%a in ('.\.cabal-sandbox\bin\pandoc --version') do ( set "VERSION=%%a" && goto :next )
:next
if "%VERSION%" == "" (
echo Error: could not determine version number.