]> granicus.if.org Git - python/commitdiff
Add missing backslashes to get_externals.bat (GH-5731)
authorSteve Dower <steve.dower@microsoft.com>
Sun, 18 Feb 2018 03:58:57 +0000 (19:58 -0800)
committerGitHub <noreply@github.com>
Sun, 18 Feb 2018 03:58:57 +0000 (19:58 -0800)
PCbuild/get_externals.bat

index e696f22d579aa629be521a9c638f5f396fe65287..d2af042d4aaebd1d9e395ff88385a23a5d5ca1f4 100644 (file)
@@ -65,7 +65,7 @@ for %%e in (%libraries%) do (
         git clone --depth 1 https://github.com/%ORG%/cpython-source-deps --branch %%e "%EXTERNALS_DIR%\%%e"
     ) else (
         echo.Fetching %%e...
-        %PYTHON% -E "%PCBUILD%get_external.py" -O %ORG% -e "%EXTERNALS_DIR%" %%e
+        %PYTHON% -E "%PCBUILD%\get_external.py" -O %ORG% -e "%EXTERNALS_DIR%" %%e
     )
 )
 
@@ -84,7 +84,7 @@ for %%b in (%binaries%) do (
         git clone --depth 1 https://github.com/%ORG%/cpython-bin-deps --branch %%b "%EXTERNALS_DIR%\%%b"
     ) else (
         echo.Fetching %%b...
-        %PYTHON% -E "%PCBUILD%get_external.py" -b -O %ORG% -e "%EXTERNALS_DIR%" %%b
+        %PYTHON% -E "%PCBUILD%\get_external.py" -b -O %ORG% -e "%EXTERNALS_DIR%" %%b
     )
 )