diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-10 08:55:44 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-10 08:55:44 -0400 |
commit | 2059f7082d6e1fae78b10e9d6f10bc5385cf7cb2 (patch) | |
tree | bd469606624a00c705094a81cf5c643fe3531a8d | |
parent | 645db8eca054be2286928371128923e52997a835 (diff) | |
download | python-coveragepy-git-2059f7082d6e1fae78b10e9d6f10bc5385cf7cb2.tar.gz |
Maybe this escaping is right
-rw-r--r-- | appveyor.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index 45e8e666..a8b9b9d3 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -116,7 +116,7 @@ install: # Make a python3.4.bat file in the current directory so that tox will find it # and python3.4 will mean what we want it to. - - "python -c \"import os; toxenv = os.environ['TOXENV']; bat = open('python{0}.{1}.bat'.format(*toxenv[2:]), 'w'); bat.write(r'@{0}\\python %*'.format(os.environ['PYTHON'])+'\\n')\"" + - "python -c \"import os; toxenv = os.environ['TOXENV']; bat = open('python{0}.{1}.bat'.format(*toxenv[2:]), 'w'); bat.write(r'@{0}\\python'.format(os.environ['PYTHON'])+' \\x25*\\n')\"" build_script: # If not a metacov job, then build wheels and .exe installers. |