26 lines
453 B
Bash
Executable File
26 lines
453 B
Bash
Executable File
#!/bin/sh
|
|
|
|
## Minecraft Land Generator - GitHub Update Script
|
|
## Morlok8k - Updated 6/5/2012
|
|
|
|
zip -r ./bin/MinecraftLandGenerator.jar ./src/ ./scripts/ ./lib/jnbt-1.1-src.zip
|
|
|
|
cd ./bin/
|
|
chmod a+x ./MinecraftLandGenerator.jar
|
|
|
|
java -jar ./MinecraftLandGenerator.jar -nowait -conf
|
|
|
|
cd ..
|
|
java -jar ./bin/MinecraftLandGenerator.jar -nowait -readme README
|
|
|
|
rm ./MLG-BuildID
|
|
|
|
|
|
|
|
git add .
|
|
git commit -a
|
|
git push origin master
|
|
echo Pausing for 20sec
|
|
sleep 20
|
|
|