-
Notifications
You must be signed in to change notification settings - Fork 0
/
run.bat
44 lines (36 loc) · 816 Bytes
/
run.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
@echo off
REM This is how you run it from the command line.
REM You don't actually need this script!
SET RUN_KOANS=python.exe -B contemplate_koans.py
REM Set this to your python folder:
SET PYTHON_PATH=C:\Python34
set SCRIPT=
:loop
REM Hunt around for python
IF EXIST "python.exe" (
SET SCRIPT=%RUN_KOANS%
) ELSE (
IF EXIST "%PYTHON_PATH%" (
SET SCRIPT=%PYTHON_PATH%\%RUN_KOANS%
) ELSE (
IF EXIST %PYTHON% SET SCRIPT=%PYTHON%\%RUN_KOANS%
)
)
IF NOT "" == "%SCRIPT%" (
%SCRIPT%
pause
) ELSE (
echo.
echo Python.exe is not in the path!
echo.
echo Fix the path and try again.
echo Or better yet, run this with the correct python path:
echo.
echo python.exe contemplate_koans.py
pause
)
Set /p keepgoing="Test again? y or n - "
if "%keepgoing%" == "y" (
goto loop
)
:end