1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-01-28 18:54:48 +01:00
PaperMC/upstreamMerge.sh
Zach Brown 2241a54955 Update upstream Spigot and upstreamMerge script
Also remove paperclip from upstream merge, it shouldn't need merging very often
2016-03-21 12:32:05 -05:00

15 lines
199 B
Bash
Executable file

#!/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
update Spigot