Add upstreamMerge.sh and update CB submodule
This commit is contained in:
parent
c86923f08f
commit
ec7bb38953
|
@ -1 +1 @@
|
|||
Subproject commit a66b96584771093d7199eff150161b83384b7056
|
||||
Subproject commit 75593ab621f26c3954bff13057d2ed6720da7592
|
|
@ -0,0 +1,15 @@
|
|||
#!/bin/bash
|
||||
|
||||
PS1="$"
|
||||
basedir=`pwd`
|
||||
|
||||
function update {
|
||||
cd "$basedir/$1"
|
||||
git fetch && git reset --hard origin/master
|
||||
cd ../
|
||||
git add $1
|
||||
}
|
||||
|
||||
update Bukkit
|
||||
update CraftBukkit
|
||||
|
Loading…
Reference in New Issue