Sag mal man muss das sein, dass hier jeder commit über die ML gejagt wird?!

Am 24. September 2016 17:37:32 MESZ, schrieb Jan-Tarek Butt <tarek@ring0.de>:
---
scripts/update-patches.sh | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/scripts/update-patches.sh b/scripts/update-patches.sh
index f8b9202..62d5bf7 100755
--- a/scripts/update-patches.sh
+++ b/scripts/update-patches.sh
@@ -8,14 +8,14 @@ shopt -s nullglob
for module in $GLUON_MODULES; do
echo "--- Updating patches for module '$module' ---"

- rm -f "$GLUONDIR"/patches/$module/*.patch
- mkdir -p "$GLUONDIR"/patches/$module
+ rm -f "$GLUONDIR"/patches/"$module"/*.patch
+ mkdir -p "$GLUONDIR"/patches/"$module"

- cd "$GLUONDIR"/$module
+ cd "$GLUONDIR"/"$module"

n=0
for commit in $(git rev-list --reverse --no-merges base..patched); do
let n=n+1
- 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"
+ 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
--
2.10.0