Script cleanup

This commit is contained in:
Marwolf
2018-07-16 17:34:04 -04:00
parent 98f2bd6394
commit bf3e60632b
17 changed files with 136 additions and 17 deletions

View File

@@ -1,20 +1,35 @@
@echo off
echo:
echo Pulling recent updates from the Open-RSC Game repository.
echo:
Windows\make pull
echo:
echo:
echo Starting any stopped Docker containers.
echo:
Windows\make start
echo:
echo:
set PATH=Ant/bin
echo:
echo:
echo Compiling the game client.
echo:
call ant -f Game/client/build.xml compile
echo:
echo:
echo Compiling the game server.
echo:
call ant -f Game/server/build.xml compile
echo:
echo:
echo Starting the game client in a new window.
echo:
call START "" ant -f Game/client/build.xml runclient
echo:
echo:
echo Starting the game server in the current window.
echo:
call ant -f Game/server/build.xml runserver
echo: