switch to Tuinity

This commit is contained in:
ㄗㄠˋ ㄑㄧˊ
2020-05-31 10:25:58 +08:00
parent 39ef5ce402
commit ef58d9d301
32 changed files with 1296 additions and 479 deletions

View File

@@ -9,13 +9,13 @@ function changeLog() {
base=$(git ls-tree HEAD $1 | cut -d' ' -f3 | cut -f1)
cd $1 && git log --oneline ${base}...HEAD
}
paper=$(changeLog Paper)
paper=$(changeLog Tuinity)
updated=""
logsuffix=""
if [ ! -z "$paper" ]; then
logsuffix="$logsuffix\n\nPaper Changes:\n$paper"
if [ -z "$updated" ]; then updated="Paper"; else updated="$updated/Paper"; fi
logsuffix="$logsuffix\n\Tuinity Changes:\n$paper"
if [ -z "$updated" ]; then updated="Tuinity"; else updated="$updated/Tuinity"; fi
fi
disclaimer="Upstream has released updates that appears to apply and compile correctly"
@@ -27,4 +27,4 @@ log="Updated Upstream ($updated)\n\n${disclaimer}${logsuffix}"
echo -e "$log" | git commit -F -
) || exit 1
) || exit 1