[CI-SKIP] Add script to commit upstream changelogs

Paper team can do paper upcommit when manual upstream updates are needed
this will generate a changelog of everything that has changed between then and now.
This commit is contained in:
Aikar 2018-08-05 21:31:40 -04:00
parent 182a016edd
commit c341aad25e
No known key found for this signature in database
GPG key ID: 401ADFC9891FAAFE
2 changed files with 45 additions and 1 deletions

8
paper
View file

@ -82,6 +82,12 @@ case "$1" in
scripts/upstreamMerge.sh "$basedir" "$2"
)
;;
"cu" | "commitup" | "commitupstream" | "upcommit" | "upstreamcommit")
(
cd "$basedir"
scripts/upstreamCommit.sh "$@"
)
;;
"r" | "root")
cd "$basedir"
;;
@ -198,4 +204,4 @@ if [ "$failed" == "1" ]; then
else
unset failed
true
fi
fi