[Python-checkins] bpo-31609: Fixes quotes in PCbuild/clean.bat (#4280)

Steve Dower webhook-mailer at python.org
Sat Nov 4 19:29:06 EDT 2017


https://github.com/python/cpython/commit/aed08562220974b5c67371b908f23caa1be07e38
commit: aed08562220974b5c67371b908f23caa1be07e38
branch: master
author: Steve Dower <steve.dower at microsoft.com>
committer: GitHub <noreply at github.com>
date: 2017-11-04T16:29:03-07:00
summary:

bpo-31609: Fixes quotes in PCbuild/clean.bat (#4280)

files:
A Misc/NEWS.d/next/Build/2017-11-04-15-35-08.bpo-31609.k7_nBR.rst
M PCbuild/clean.bat

diff --git a/Misc/NEWS.d/next/Build/2017-11-04-15-35-08.bpo-31609.k7_nBR.rst b/Misc/NEWS.d/next/Build/2017-11-04-15-35-08.bpo-31609.k7_nBR.rst
new file mode 100644
index 00000000000..0e950e32a19
--- /dev/null
+++ b/Misc/NEWS.d/next/Build/2017-11-04-15-35-08.bpo-31609.k7_nBR.rst
@@ -0,0 +1 @@
+Fixes quotes in PCbuild/clean.bat
diff --git a/PCbuild/clean.bat b/PCbuild/clean.bat
index 6144c715f64..d75198ae55b 100644
--- a/PCbuild/clean.bat
+++ b/PCbuild/clean.bat
@@ -2,4 +2,4 @@
 rem A batch program to clean a particular configuration,
 rem just for convenience.
 
-call %~dp0build.bat -t Clean %*
+call "%~dp0build.bat" -t Clean %*



More information about the Python-checkins mailing list