exec/run.bat in PlayRockPaperScissorsGame-1.7.0 vs exec/run.bat in PlayRockPaperScissorsGame-1.7.1
- old
+ new
@@ -1,13 +1,24 @@
@ECHO OFF
:master
-
+ :confirm
+ CHOICE /C YN "Would you like to play Rock Paper Scissors?"
+ if "%ERRORLEVEL%"=="1" CALL:process
+ if "%ERRORLEVEL%"=="2" CALL:exiting
+ GOTO:EOF
+ REM start process
:process
START cmd.exe /K PlayRockPaperScissorsGame
+ IF %ERRORLEVEL% EQU 9009 (
+ ECHO error - cmd.exe file not found in your PATH
+ )
GOTO:EOF
-
- CALL:process
+ REM end process
+
+ :exiting
+ EXIT
+ GOTO:EOF
GOTO:EOF
CALL:master
\ No newline at end of file