1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-02-21 12:17:23 +01:00
PaperMC/rebuildPatches.sh
2013-01-21 20:24:30 +11:00

27 lines
791 B
Bash
Executable file

#!/bin/bash
basedir=`pwd`
echo "Rebuilding patch files from current fork state..."
function cleanupPatches {
cd $1
for patch in *.patch; do
lines=$(git diff --staged $patch | grep -E "^(\+|\-)" | grep -Ev "(From [a-z0-9]{32,}|\-\-\- a|\+\+\+ b|.index)" | wc -l)
if [ "$lines" == "0" ] ; then
git reset HEAD $patch >/dev/null
git checkout -- $patch >/dev/null
fi
done
}
function savePatches {
what=$1
target=$2
cd $basedir/$target/
git format-patch -N -o $basedir/${what}-Patches/ upstream/upstream
cd $basedir
git add $basedir/${what}-Patches
cleanupPatches $basedir/${what}-Patches
echo " Patches saved for $what to $what-Patches/"
}
savePatches Bukkit Spigot-API
savePatches CraftBukkit Spigot