Staging
v0.5.1
https://github.com/python/cpython
Revision d6da7604d3eb19635f27e3d2d66e5a973cc26266 authored by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) on 03 June 2016, 06:14:06 UTC, committed by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) on 03 June 2016, 06:14:06 UTC
1 parent 287e687
Raw File
Tip revision: d6da7604d3eb19635f27e3d2d66e5a973cc26266 authored by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) on 03 June 2016, 06:14:06 UTC
Issue #27167: Clarify the subprocess.CalledProcessError error message text
Tip revision: d6da760
prepare_ssl.bat
@echo off
if not defined HOST_PYTHON (
  if "%1" EQU "Debug" (
    shift
    set HOST_PYTHON=python_d.exe
    if not exist python36_d.dll exit 1
  ) ELSE (
    set HOST_PYTHON=python.exe
    if not exist python36.dll exit 1
  )
)
%HOST_PYTHON% "%~dp0prepare_ssl.py" %1
back to top