From: Jan Kratochvil Date: Wed, 4 Mar 2020 12:12:31 +0000 (+0100) Subject: dashtopatch: Prevent *.patch+*.Upatch if: ==master X-Git-Url: http://git.jankratochvil.net/?p=nethome.git;a=commitdiff_plain;h=f51a7283ffe021d8f9b3bfb14a9cedb37a7d15ca dashtopatch: Prevent *.patch+*.Upatch if: ==master --- diff --git a/bin/dashtopatch b/bin/dashtopatch index 901db5a..a70dff1 100755 --- a/bin/dashtopatch +++ b/bin/dashtopatch @@ -33,11 +33,13 @@ for elem in $(echo "$1"|tr '-' ' ');do if $compile;then make fi - if [ -e "$next".patch ];then - echo -e '/^--- /,$d\nw'|ed "$next".patch || : + if [ "$origin" != "master" ];then + if [ -e "$next".patch ];then + echo -e '/^--- /,$d\nw'|ed "$next".patch || : + fi + git diff "$base" "$next" --|diffdecvs >>"$next".patch + git diff -U9999999 --binary "$base" "$next" -- >"$next".Upatch fi - git diff "$base" "$next" --|diffdecvs >>"$next".patch - git diff -U9999999 --binary "$base" "$next" -- >"$next".Upatch if $gerrit;then cp "$next".patch dashtopatch.patch echo -e '/^--- /,$d\nw'|ed dashtopatch.patch