Paper/scripts/upstreamMerge.sh

26 lines
412 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"
gitcmd="git -c commit.gpgsign=false"
function update {
2016-04-02 03:55:54 +00:00
cd "$workdir/$1"
$gitcmd fetch && $gitcmd clean -fd && $gitcmd reset --hard origin/master
cd ../
$gitcmd 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
)