From 84b0a381dc9fd038e0458ca71c0665eb64492189 Mon Sep 17 00:00:00 2001 From: David Bauer Date: Sun, 11 Oct 2020 01:59:47 +0200 Subject: [PATCH] scripts: display commit title when updating patches --- scripts/update-patches.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/update-patches.sh b/scripts/update-patches.sh index 939c1640..c40c63b8 100755 --- a/scripts/update-patches.sh +++ b/scripts/update-patches.sh @@ -21,6 +21,7 @@ for module in $GLUON_MODULES; do for commit in $(git rev-list --reverse --no-merges base..patched); do (( ++n )) mkdir -p "${GLUON_PATCHESDIR}/$module" + echo "Updating: $(git log --format=%s -n 1 "$commit")" git -c core.abbrev=40 show --pretty=format:'From: %an <%ae>%nDate: %aD%nSubject: %B' --no-renames --binary "$commit" > "${GLUON_PATCHESDIR}/$module/$(printf '%04u' "$n")-$(git show -s --pretty=format:%f "$commit").patch" done done