Staging
v0.5.1
Revision 6e86580fc750762a0859ab6129921777a5405640 authored by Larry Hastings on 22 November 2015, 07:54:22 UTC, committed by Larry Hastings on 22 November 2015, 07:54:22 UTC
1 parent 1fb5b73
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 python35_d.dll exit 1
  ) ELSE (
    set HOST_PYTHON=python.exe
    if not exist python35.dll exit 1
  )
)
%HOST_PYTHON% prepare_ssl.py %1
back to top