Skip to content
Snippets Groups Projects
patch.sh 531 B
Newer Older
#!/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 --committer-date-is-author-date "$patch"; then
			git am --abort
			git checkout patched
			git branch -D patching
	git branch -M patched