Paper/scripts/upstreamMerge.sh

25 lines
342 B
Bash
Raw Normal View History

2016-04-02 03:55:54 +00:00
#!/usr/bin/env bash
(
set -e
PS1="$"
basedir="$(cd "$1" && pwd -P)"
2016-04-02 03:55:54 +00:00
workdir="$basedir/work"
function update {
2016-04-02 03:55:54 +00:00
cd "$workdir/$1"
git fetch && git reset --hard origin/master
cd ../
git add $1
}
update Bukkit
update CraftBukkit
update Spigot
2016-08-19 21:00:59 +00:00
2017-05-21 04:41:39 +00:00
if [[ "$2" = "all" || "$2" = "a" ]] ; then
2016-08-19 21:00:59 +00:00
update BuildData
update Paperclip
fi
)