1@echo off
2if not defined HOST_PYTHON (
3  if "%1" EQU "Debug" (
4    shift
5    set HOST_PYTHON=python_d.exe
6    if not exist python36_d.dll exit 1
7  ) ELSE (
8    set HOST_PYTHON=python.exe
9    if not exist python36.dll exit 1
10  )
11)
12%HOST_PYTHON% "%~dp0prepare_ssl.py" %1
13