Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit 4939ff0

Browse files
Add support for Python2.6 to configure.bat
1 parent 6170378 commit 4939ff0

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

configure.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ WHERE /Q python 1>NUL 2>NUL
3232
IF %ERRORLEVEL% NEQ 0 (
3333
IF EXIST C:\Python27\python.exe (
3434
SET python=C:\Python27\python.exe
35+
) ELSE IF EXIST C:\Python26\python.exe (
36+
SET python=C:\Python26\python.exe
3537
) ELSE (
3638
ECHO >&2 Error: could not locate a copy of python
3739
PAUSE

0 commit comments

Comments
 (0)