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

scripts/update-patches: disable rename detection

git 2.9 enables rename detection by default, changing the content of some
of our patch files. Explicitly disable it.
parent 6b644df4
No related branches found
No related tags found
No related merge requests found
...@@ -16,6 +16,6 @@ for module in $GLUON_MODULES; do ...@@ -16,6 +16,6 @@ for module in $GLUON_MODULES; do
n=0 n=0
for commit in $(git rev-list --reverse --no-merges base..patched); do for commit in $(git rev-list --reverse --no-merges base..patched); do
let n=n+1 let n=n+1
git show --pretty=format:'From: %an <%ae>%nDate: %aD%nSubject: %B' $commit > "$GLUONDIR"/patches/$module/"$(printf '%04u' $n)-$(git show -s --pretty=format:%f $commit).patch" git show --pretty=format:'From: %an <%ae>%nDate: %aD%nSubject: %B' --no-renames $commit > "$GLUONDIR"/patches/$module/"$(printf '%04u' $n)-$(git 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