Skip to content
Snippets Groups Projects
Commit b7676e58 authored by Matthias Schiffer's avatar Matthias Schiffer
Browse files

Fix update-patches patch names

parent 76167579
No related branches found
No related tags found
No related merge requests found
...@@ -13,6 +13,6 @@ for module in $GLUON_MODULES; do ...@@ -13,6 +13,6 @@ for module in $GLUON_MODULES; do
n=0 n=0
for commit in $(git -C "$dir" rev-list --reverse --no-merges base..patched); do for commit in $(git -C "$dir" rev-list --reverse --no-merges base..patched); do
let n=n+1 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
done done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment