scripts/patch.sh: apply patches in a loop instead of a single git am
command
Using a loop makes the script a bit nicer, and it works around a git bug corrupting patch dates when multiple patches are applied at once.
This commit is contained in:
parent
4b3090f809
commit
0f91fa6fa8
@ -9,13 +9,13 @@ for module in $GLUON_MODULES; do
|
|||||||
cd "$GLUONDIR"/$module
|
cd "$GLUONDIR"/$module
|
||||||
git checkout -B patching base
|
git checkout -B patching base
|
||||||
|
|
||||||
if [ "$(echo "$GLUONDIR"/patches/$module/*.patch)" ]; then
|
for patch in "$GLUONDIR"/patches/$module/*.patch; do
|
||||||
git -c user.name='Gluon Patch Manager' -c user.email='gluon@void.example.com' am --whitespace=nowarn "$GLUONDIR"/patches/$module/*.patch || (
|
if ! git -c user.name='Gluon Patch Manager' -c user.email='gluon@void.example.com' am --whitespace=nowarn "$patch"; then
|
||||||
git am --abort
|
git am --abort
|
||||||
git checkout patched
|
git checkout patched
|
||||||
git branch -D patching
|
git branch -D patching
|
||||||
false
|
exit 1
|
||||||
)
|
fi
|
||||||
fi
|
done
|
||||||
git branch -M patched
|
git branch -M patched
|
||||||
done
|
done
|
||||||
|
Loading…
Reference in New Issue
Block a user