mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2024-11-13 05:19:59 +00:00
e85cdacbc5
Added the complete source code to ComputerCraft 1.79 for Minecraft 1.8.9, plus newly written README and LICENSE files for the open source release.
13 lines
176 B
Bash
Executable File
13 lines
176 B
Bash
Executable File
#!/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 ..
|