1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-01-31 03:50:36 +01:00

build minecraft commit before applying CraftBukkit

allows us to see what craft bukkit changed
This commit is contained in:
Aikar 2018-07-18 00:45:27 -04:00
parent 68f8952459
commit 0af7fd4996

View file

@ -21,6 +21,17 @@ cd "$workdir/CraftBukkit"
$gitcmd checkout -B patched HEAD >/dev/null 2>&1
rm -rf "$cb"
mkdir -p "$cb"
# create baseline NMS import so we can see diff of what CB changed
for file in $(ls nms-patches)
do
patchFile="nms-patches/$file"
file="$(echo "$file" | cut -d. -f1).java"
cp "$nms/$file" "$cb/$file"
done
$gitcmd add src
$gitcmd commit -m "Minecraft $ $(date)" --author="Auto <auto@mated.null>"
# apply patches
for file in $(ls nms-patches)
do
patchFile="nms-patches/$file"
@ -31,11 +42,10 @@ do
sed -i 's/\r//' "$nms/$file" > /dev/null
set -e
cp "$nms/$file" "$cb/$file"
"$patch" -s -d src/main/java/ "net/minecraft/server/$file" < "$patchFile"
done
$gitcmd add src
$gitcmd commit -m "CraftBukkit $ $(date)" --author="Auto <auto@mated.null>"
$gitcmd checkout -f HEAD^
$gitcmd checkout -f HEAD~2
)