mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 02:10:30 +01:00
1c5f8b0fce
Upstream has released updates that appear to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing Bukkit Changes: 33a2b476 PR-734: Make PlayerInventory#getItem Nullable CraftBukkit Changes: 953d3ddc SPIGOT-3034: PlayerKickEvent.setLeaveMessage(String) doesn't actually do anything 2c47af0c SPIGOT-6963: CraftMetaBlockState#getBlockState applied TileEntity ids without the minecraft namespace prefix.
39 lines
1.1 KiB
Bash
Executable File
39 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
(
|
|
set -e
|
|
PS1="$"
|
|
|
|
function changelog() {
|
|
base=$(git ls-tree HEAD $1 | cut -d' ' -f3 | cut -f1)
|
|
cd $1 && git log --oneline ${base}...HEAD | sed -E 's/(^[0-9a-f]{8,} |Revert ")#([0-9]+)/\1PR-\2/'
|
|
}
|
|
bukkit=$(changelog work/Bukkit)
|
|
cb=$(changelog work/CraftBukkit)
|
|
spigot=$(changelog work/Spigot)
|
|
|
|
updated=""
|
|
logsuffix=""
|
|
if [ ! -z "$bukkit" ]; then
|
|
logsuffix="$logsuffix\n\nBukkit Changes:\n$bukkit"
|
|
updated="Bukkit"
|
|
fi
|
|
if [ ! -z "$cb" ]; then
|
|
logsuffix="$logsuffix\n\nCraftBukkit Changes:\n$cb"
|
|
if [ -z "$updated" ]; then updated="CraftBukkit"; else updated="$updated/CraftBukkit"; fi
|
|
fi
|
|
if [ ! -z "$spigot" ]; then
|
|
logsuffix="$logsuffix\n\nSpigot Changes:\n$spigot"
|
|
if [ -z "$updated" ]; then updated="Spigot"; else updated="$updated/Spigot"; fi
|
|
fi
|
|
disclaimer="Upstream has released updates that appear to apply and compile correctly.\nThis update has not been tested by PaperMC and as with ANY update, please do your own testing"
|
|
|
|
if [ ! -z "$1" ]; then
|
|
disclaimer="$@"
|
|
fi
|
|
|
|
log="${UP_LOG_PREFIX}Updated Upstream ($updated)\n\n${disclaimer}${logsuffix}"
|
|
|
|
echo -e "$log" | git commit -F -
|
|
|
|
) || exit 1
|