script: redesigned scripts to work based off of CMD instead

This commit is contained in:
Yannik Bretschneider 2021-06-05 18:39:51 +02:00
parent ab4e9aa42c
commit f1322bdbed
2 changed files with 9 additions and 2 deletions

View File

@ -1,2 +1,4 @@
@echo off
powershell .\rebuildDocker.ps1
echo .\gradlew Server:jar | cmd
docker build -t server-testbuild .
# docker run --rm -e "MMU_LOG_LEVEL=5" -p 1218:1218 server-testbuild

View File

@ -1,2 +1,7 @@
@echo off
powershell .\updateSubmodule.ps1
git submodule update --init
cd .\Gamelib
git fetch
git checkout gamelib
git pull
cd ..