@leroysheep / LeeRoySheep / commits / 7cc72ca00b

Meta/Reintegrate: ignroe whitespace when comparing list of topics

Often topics that are ready to advance are marked by indenting them before moving. Ignore these changes when comparing.

Junio C Hamano committed Jul 19, 2013 at 10:21 UTC 7cc72ca00b6b1b17ae2113fa254eed63cc64fe99
1 file changed +2 -2
Reintegrate
+2 -2
index 0266e712f4..45e384c0aa 100755 --- a/Reintegrate +++ b/Reintegrate @@ -267,7 +267,7 @@ then generate "$0" "$@" elif test -z "$diff" then - generate "$0" "$@" | diff -u "$update" - + generate "$0" "$@" | diff -w -u "$update" - if test $? = 0 then echo >&2 "No changes." @@ -283,5 +283,5 @@ then esac fi else - generate "$0" "$@" | diff -u "$update" - + generate "$0" "$@" | diff -w -u "$update" - fi