Tweaking build script for weird pythons.
This commit is contained in:
3
xb.bat
3
xb.bat
@@ -1,7 +1,6 @@
|
|||||||
@ECHO OFF
|
@ECHO OFF
|
||||||
REM Copyright 2015 Ben Vanik. All Rights Reserved.
|
REM Copyright 2015 Ben Vanik. All Rights Reserved.
|
||||||
|
|
||||||
TITLE xenia
|
|
||||||
SET DIR=%~dp0
|
SET DIR=%~dp0
|
||||||
|
|
||||||
SET XENIA_SLN=build\xenia\xenia.sln
|
SET XENIA_SLN=build\xenia\xenia.sln
|
||||||
@@ -508,7 +507,7 @@ IF %ERRORLEVEL% NEQ 0 (
|
|||||||
ENDLOCAL & SET _RESULT=1
|
ENDLOCAL & SET _RESULT=1
|
||||||
GOTO :eof
|
GOTO :eof
|
||||||
)
|
)
|
||||||
CMD /c python -c "import sys; sys.exit(1 if sys.version_info[:2] != (2, 7) else 0)"
|
CMD /c python -c "import sys; sys.exit(1 if not sys.version_info[:2] == (2, 7) else 0)"
|
||||||
IF %ERRORLEVEL% NEQ 0 (
|
IF %ERRORLEVEL% NEQ 0 (
|
||||||
ENDLOCAL & SET _RESULT=1
|
ENDLOCAL & SET _RESULT=1
|
||||||
GOTO :eof
|
GOTO :eof
|
||||||
|
|||||||
Reference in New Issue
Block a user