Преглед изворни кода

scripts/patch.sh: add --committer-date-is-author-date to `git am`

This option will make the generated commit IDs deterministic, greatly
reducing the number of repository objects created when calling `make
update` repeatedly.
Matthias Schiffer пре 8 година
родитељ
комит
ec1c82566a
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      scripts/patch.sh

+ 1 - 1
scripts/patch.sh

@@ -10,7 +10,7 @@ for module in $GLUON_MODULES; do
 	git checkout -B patching base
 
 	for patch in "$GLUONDIR"/patches/$module/*.patch; do
-		if ! git -c user.name='Gluon Patch Manager' -c user.email='gluon@void.example.com' am --whitespace=nowarn "$patch"; then
+		if ! git -c user.name='Gluon Patch Manager' -c user.email='gluon@void.example.com' am --whitespace=nowarn --committer-date-is-author-date "$patch"; then
 			git am --abort
 			git checkout patched
 			git branch -D patching