1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-02-17 18:47:40 +01:00
PaperMC/upstreamMerge.sh

17 lines
203 B
Bash
Raw Normal View History

#!/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
2016-03-03 03:46:26 -06:00
update Paperclip