Initial commit - hello future of Spigot!

This commit is contained in:
md_5
2013-01-15 12:18:40 +11:00
commit 017a98eb68
24 changed files with 6974 additions and 0 deletions

17
rebuildPatches.sh Executable file
View File

@@ -0,0 +1,17 @@
#!/bin/bash
basedir=$(dirname $(readlink -f $0))
echo "Rebuilding patch files from current fork state..."
function savePatches {
what=$1
target=$2
cd $basedir/$target/
git format-patch -o $basedir/${what}-Patches/ upstream/master
cd $basedir
git add $basedir/${what}-Patches
echo " Patches saved for $what to $what-Patches/"
}
savePatches Bukkit Spigot-API
savePatches CraftBukkit Spigot