Cleanup and restructure the project

This commit is contained in:
DemonWav
2016-04-01 22:55:54 -05:00
parent 9fcb513a2e
commit 09812092f9
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