mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2024-11-14 05:44:52 +00:00
13 lines
176 B
Bash
13 lines
176 B
Bash
|
#!/bin/sh
|
||
|
cd luaj-2.0.3
|
||
|
echo "Building LuaJ..."
|
||
|
ant clean
|
||
|
ant
|
||
|
|
||
|
echo "Copying output to libs..."
|
||
|
rm ../libs/luaj-jse-2.0.3.jar
|
||
|
cp luaj-jse-2.0.3.jar ../libs
|
||
|
|
||
|
echo "Done."
|
||
|
cd ..
|