Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-15 04:20:04 +01:00
Use a more reliable fixed width sequence for rebuild patches
Dieser Commit ist enthalten in:
Ursprung
0ebd642d15
Commit
9a0f54ce99
@ -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
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren