Staging
v0.8.1
https://github.com/python/cpython
Raw File
Tip revision: cec00a7d87e7280b30eaef2e2567ebd0da5b8b9c authored by Ned Deily on 16 May 2016, 20:03:51 UTC
Version bump for 3.6.0a1
Tip revision: cec00a7
get_externals.bat
@echo off
setlocal
rem Simple script to fetch source for external tools

where /Q svn
if ERRORLEVEL 1 (
    echo.svn.exe must be on your PATH to get external tools.
    echo.Try TortoiseSVN (http://tortoisesvn.net/^) and be sure to check the
    echo.command line tools option.
    popd
    exit /b 1
)

if not exist "%~dp0..\..\externals" mkdir "%~dp0..\..\externals"
pushd "%~dp0..\..\externals"

if "%SVNROOT%"=="" set SVNROOT=http://svn.python.org/projects/external/

if not exist "windows-installer\.svn" (
    echo.Checking out installer dependencies to %CD%\windows-installer
    svn co %SVNROOT%windows-installer
) else (
    echo.Updating installer dependencies in %CD%\windows-installer
    svn up windows-installer
)

popd
back to top