0f91fa6fa8
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.
22 lines
456 B
Bash
Executable File
22 lines
456 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
shopt -s nullglob
|
|
|
|
. "$GLUONDIR"/scripts/modules.sh
|
|
|
|
for module in $GLUON_MODULES; do
|
|
cd "$GLUONDIR"/$module
|
|
git checkout -B patching base
|
|
|
|
for patch in "$GLUONDIR"/patches/$module/*.patch; do
|
|
if ! git -c user.name='Gluon Patch Manager' -c user.email='gluon@void.example.com' am --whitespace=nowarn "$patch"; then
|
|
git am --abort
|
|
git checkout patched
|
|
git branch -D patching
|
|
exit 1
|
|
fi
|
|
done
|
|
git branch -M patched
|
|
done
|