1
0
mirror of https://github.com/SKCraft/Launcher.git synced 2024-12-17 15:58:18 +01:00

Add easy to use build batch/shell scripts.

This commit is contained in:
sk89q 2015-07-21 01:33:40 -07:00
parent 4fc8c274c3
commit ca66da639d
2 changed files with 6 additions and 0 deletions

3
build.bat Normal file
View File

@ -0,0 +1,3 @@
@echo off
call gradlew clean build
pause

3
build.sh Normal file
View File

@ -0,0 +1,3 @@
#!/bin/sh
./gradlew clean build
read -p "Press any key to continue..."