Staging
v0.5.1
Revision a731a68cf6611b0b23da758d735f056ff661757e authored by Ned Deily on 11 July 2016, 19:38:40 UTC, committed by Ned Deily on 11 July 2016, 19:38:40 UTC
1 parent aa843d2
Raw File
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