From b7676e5818d22c63f20c52bc0f3fb7910ed98b37 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Sat, 28 Dec 2013 23:07:01 +0100 Subject: [PATCH] Fix update-patches patch names --- scripts/update-patches.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/update-patches.sh b/scripts/update-patches.sh index 47457317..c4c0b53c 100755 --- a/scripts/update-patches.sh +++ b/scripts/update-patches.sh @@ -13,6 +13,6 @@ for module in $GLUON_MODULES; do n=0 for commit in $(git -C "$dir" rev-list --reverse --no-merges base..patched); do let n=n+1 - git -C "$dir" show --pretty=format:'From: %an <%ae>%nDate: %aD%nSubject: %B' $commit > "$1"/patches/$module/"$(printf '%04u' $n)-$(git -C "$dir" show -s --pretty=format:%f).patch" + git -C "$dir" show --pretty=format:'From: %an <%ae>%nDate: %aD%nSubject: %B' $commit > "$1"/patches/$module/"$(printf '%04u' $n)-$(git -C "$dir" show -s --pretty=format:%f $commit).patch" done done