mirror of
https://github.com/SWG-Source/swg-main
synced 2026-08-16 16:23:03 -04:00
8 lines
270 B
Bash
Executable file
8 lines
270 B
Bash
Executable file
#/bin/bash
|
|
|
|
destination="data/sku.0/sys.server/compiled/game"
|
|
sourcepath="dsrc/sku.0/sys.server/compiled/game"
|
|
|
|
mkdir -p $destination/script
|
|
|
|
javac -Xlint:-options -encoding utf8 -classpath "$destination" -d "$destination" -sourcepath "$sourcepath" -g -deprecation "$1"
|