Cleanup and restructure the project

This commit is contained in:
DemonWav 2016-04-01 22:55:54 -05:00
parent cd3d8fb27e
commit 8b66d99e73
21 changed files with 193 additions and 115 deletions

16
scripts/upstreamMerge.sh Executable file
View file

@ -0,0 +1,16 @@
#!/usr/bin/env bash
PS1="$"
basedir="$1"
workdir="$basedir/work"
function update {
cd "$workdir/$1"
git fetch && git reset --hard origin/master
cd ../
git add $1
}
update Bukkit
update CraftBukkit
update Spigot