summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgoshhhy <37872995+goshhhy@users.noreply.github.com>2019-08-06 00:58:41 -0700
committerJan Niklas Hasse <jhasse@bixense.com>2019-08-06 09:58:41 +0200
commit0cb85516b43bc312363fcb959ce8816a6db6719e (patch)
treeac4fa924819fabea9898c7d56cae56ccb82acc89
parent70c8d75055b4fcb0ee6d9a41b908c554534725f6 (diff)
downloadninja-0cb85516b43bc312363fcb959ce8816a6db6719e.tar.gz
Fix appveyor.yml (#1621)
Add escaping for sed command. Fixes #1611.
-rw-r--r--appveyor.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 4c64f29..04ed58e 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -16,7 +16,7 @@ for:
build_script:
ps: "C:\\msys64\\usr\\bin\\bash -lc @\"\n
pacman -S --quiet --noconfirm --needed re2c 2>&1\n
- sed -i 's|cmd /c $ar cqs $out.tmp $in && move /Y $out.tmp $out|$ar crs $out $in|g' configure.py\n
+ sed -i 's|cmd /c `$ar cqs `$out.tmp `$in \\&\\& move /Y `$out.tmp `$out|`$ar crs `$out `$in|g' configure.py\n
./configure.py --bootstrap --platform mingw 2>&1\n
./ninja all\n
./ninja_test 2>&1\n