1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-01-30 19:40:37 +01:00

Add cleanup Patches function to not modify patches with no changes

By: Aikar <aikar@aikar.co>
This commit is contained in:
Spigot 2013-01-16 12:08:09 -05:00
parent e8c26983b1
commit 65eac0c3d5

View file

@ -2,14 +2,24 @@
basedir=$(dirname $(readlink -f $0))
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)" | 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 -o $basedir/${what}-Patches/ upstream/master
git format-patch -N -o $basedir/${what}-Patches/ upstream/master
cd $basedir
git add $basedir/${what}-Patches
cleanupPatches $basedir/${what}-Patches
echo " Patches saved for $what to $what-Patches/"
}