diff options
author | Steve Dower <steve.dower@microsoft.com> | 2017-11-04 16:29:03 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-04 16:29:03 -0700 |
commit | aed08562220974b5c67371b908f23caa1be07e38 (patch) | |
tree | 385629f2ec5174d52d8895088c0294e9b5821041 /PCbuild | |
parent | 0d2a9088d16826343344b04461c8be44b4008710 (diff) | |
download | cpython-git-aed08562220974b5c67371b908f23caa1be07e38.tar.gz |
bpo-31609: Fixes quotes in PCbuild/clean.bat (#4280)
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/clean.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PCbuild/clean.bat b/PCbuild/clean.bat index 6144c715f6..d75198ae55 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 %* |