mirror of
https://github.com/BX-Team/DivineMC.git
synced 2025-12-19 14:59:25 +00:00
Updated Upstream (Purpur)
Upstream has released updates that appear to apply and compile correctly Purpur Changes: PurpurMC/Purpur@0797218 Updated Upstream (Paper)
This commit is contained in:
26
scripts/upstreamCommit.sh
Normal file
26
scripts/upstreamCommit.sh
Normal file
@@ -0,0 +1,26 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# requires curl & jq
|
||||
|
||||
# upstreamCommit <old hash>
|
||||
|
||||
function getCommits() {
|
||||
echo "$(curl -H "Accept: application/vnd.github.v3+json" https://api.github.com/repos/"$1"/compare/"$2"...HEAD | jq -r '.commits[] | "'"$1"'@\(.sha[:7]) \(.commit.message | split("\r\n")[0] | split("\n")[0])"')"
|
||||
}
|
||||
|
||||
(
|
||||
set -e
|
||||
PS1="$"
|
||||
|
||||
# Purpur updates
|
||||
purpurHash="$1"
|
||||
purpur=$(getCommits "PurpurMC/Purpur" "$purpurHash")
|
||||
updated="Purpur"
|
||||
logsuffix="\n\nPurpur Changes:\n$purpur"
|
||||
|
||||
disclaimer="Upstream has released updates that appear to apply and compile correctly"
|
||||
log="Updated Upstream ($updated)\n\n${disclaimer}${logsuffix}"
|
||||
|
||||
echo -e "$log" | git commit -F -
|
||||
|
||||
) || exit 1
|
||||
Reference in New Issue
Block a user