mirror of
https://github.com/YatopiaMC/Yatopia.git
synced 2024-11-05 10:23:15 +01:00
46 lines
859 B
Bash
Executable File
46 lines
859 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
PS1=$
|
|
basedir=`pwd`
|
|
|
|
function update {
|
|
branch=$2
|
|
if [ -z "$2" ]; then
|
|
branch="master"
|
|
fi
|
|
cd "$basedir/$1"
|
|
git fetch && git reset --hard origin/$branch
|
|
git add $1
|
|
}
|
|
|
|
function updateAll {
|
|
update Akarin 1.16.2
|
|
update Empirecraft ver/1.16.2
|
|
update Origami 1.16
|
|
update Purpur ver/1.16.3
|
|
update Rainforest ver/1.16
|
|
update Tuinity ver/1.16.3
|
|
git submodule update --recursive
|
|
}
|
|
|
|
if [ -z "$1" ]; then
|
|
updateAll
|
|
elif [ "$1" == "true" ]; then
|
|
update Tuinity ver/1.16.3
|
|
git submodule update --recursive
|
|
elif [ "$1" == "false" ]; then
|
|
if [ "$2" == "true" ]; then
|
|
git submodule update --init -f
|
|
cd "$basedir"
|
|
cd Tuinity
|
|
git clean -fx
|
|
git clean -fd
|
|
git fetch
|
|
git reset --hard origin/ver/1.16.3
|
|
git submodule update --init --recursive -f
|
|
else
|
|
updateAll
|
|
fi
|
|
else
|
|
updateAll
|
|
fi |