22 lines
479 B
Bash
Executable File
22 lines
479 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
|
|
|
|
if [ "$(echo "$GLUONDIR"/patches/$module/*.patch)" ]; then
|
|
git -c user.name='Gluon Patch Manager' -c user.email='gluon@void.example.com' am --whitespace=nowarn "$GLUONDIR"/patches/$module/*.patch || (
|
|
git am --abort
|
|
git checkout patched
|
|
git branch -D patching
|
|
false
|
|
)
|
|
fi
|
|
git branch -M patched
|
|
done
|