Added debug mode in script

This commit is contained in:
Andrew Lee 2018-04-15 15:31:39 -04:00
parent dc2567130b
commit 9a9348c160

View file

@ -13,6 +13,7 @@ set /p start=
if %start% == Yes goto a
if %start% == yes goto a
if %start% == y goto a
if %start% == debug goto ad
echo Exiting...
pause>nul
@ -20,4 +21,8 @@ exit
:a
git pull
node bot_discord.js
goto a
goto a
:ad
git pull
node bot_discord.js --debug
goto ad