Only rebuild patches that are changed

This commit is contained in:
Thinkofdeath 2014-11-28 18:26:30 +00:00
parent 2abdb9a061
commit 8768831c56

View file

@ -6,11 +6,16 @@ then
exit
fi
rm -f nms-patches/*
for file in $(ls src/main/java/net/minecraft/server)
do
echo "Diffing $file"
dos2unix -q $1/net/minecraft/server/$file $1/net/minecraft/server/$file
diff -u $1/net/minecraft/server/$file src/main/java/net/minecraft/server/$file > nms-patches/"$(echo $file | cut -d. -f1)".patch
outName=$(echo nms-patches/"$(echo $file | cut -d. -f1)".patch)
patchNew=$(diff -u $1/net/minecraft/server/$file src/main/java/net/minecraft/server/$file)
patchCut=$(echo "$patchNew" | tail -n +3)
patchOld=$(cat "$outName" | tail -n +3)
if [ "$patchCut" != "$patchOld" ] ; then
echo "$outName changed"
echo "$patchNew" > "$outName"
fi
done