Staging
v0.8.1
Revision 5fbe5e161c969bc8a0d44a301152f8bf5afe0fc7 authored by Miss Islington (bot) on 03 November 2017, 05:36:45 UTC, committed by INADA Naoki on 03 November 2017, 05:36:45 UTC
netrc file format doesn't support quotes and escapes.

See https://linux.die.net/man/5/netrc
(cherry picked from commit b24cd055ecb3eea9a15405a6ca72dafc739e6531)
1 parent 7891556
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