Use a more reliable fixed width sequence for rebuild patches

This commit is contained in:
Aikar 2016-05-12 21:37:14 -04:00
parent 0ebd642d15
commit 9a0f54ce99
1 changed files with 2 additions and 2 deletions

View File

@ -38,10 +38,10 @@ function savePatches {
echo "REBASE DETECTED - PARTIAL SAVE"
last=$(cat "$basedir/$target/.git/rebase-apply/last")
next=$(cat "$basedir/$target/.git/rebase-apply/next")
for i in $(seq -w 1 1 $last)
for i in $(seq -f "%04g" 1 1 $last)
do
if [ $i -lt $next ]; then
rm 0${i}-*.patch
rm ${i}-*.patch
fi
done
else