Created
December 11, 2011 02:11
-
-
Save shakesoda/1457728 to your computer and use it in GitHub Desktop.
quick craftbukkit setup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
BINDIR=/Users/`whoami`/minecraft | |
mkdir $BINDIR | |
cd $BINDIR | |
# download latest craftbukkit | |
curl -O http://ci.bukkit.org/job/dev-CraftBukkit/lastSuccessfulBuild/artifact/target/craftbukkit-1.0.0-SNAPSHOT.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
BINDIR=/Users/`whoami`/minecraft | |
cd $BINDIR | |
java -Xincgc -Xmx1G -jar craftbukkit-1.0.0-SNAPSHOT.jar |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment