-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathbuild.bat
More file actions
24 lines (21 loc) · 852 Bytes
/
Copy pathbuild.bat
File metadata and controls
24 lines (21 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
@echo off
@rem ============================================================================
@rem EliteMobs Build Script
@rem Runs: gradle clean shadowJar
@rem Output: testbed/plugins/EliteMobs.jar
@rem ============================================================================
echo Building EliteMobs...
echo.
call "%~dp0gradlew.bat" clean shadowJar %*
if %ERRORLEVEL% equ 0 (
echo.
echo ============================================================================
echo BUILD SUCCESSFUL
echo Output: testbed/plugins/EliteMobs.jar
echo ============================================================================
) else (
echo.
echo ============================================================================
echo BUILD FAILED
echo ============================================================================
)