mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-31 00:15:54 -04:00
11 lines
237 B
Bash
11 lines
237 B
Bash
#!/bin/bash
|
|
DATAPATH=../../../../../../../../data/sku.0/sys.server/plt.shared/loc.shared/compiled/game
|
|
|
|
FILES=$1
|
|
|
|
if [[ $1 == "" ]]; then
|
|
FILES=`find -name "*.java"`;
|
|
fi;
|
|
|
|
javac -g -sourcepath . -classpath $DATAPATH -d $DATAPATH $FILES
|