From f00c80b8715ac45ba4e8f96c7dad963b6203e7e8 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Sun, 19 Feb 2006 00:54:54 -0800 Subject: [PATCH] Minor fix for WI script --- WI | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/WI b/WI index c68e02de..60ee92c2 100755 --- a/WI +++ b/WI @@ -5,7 +5,9 @@ has_msg=' has these since the last announcement.' in_addition= for m in master next pu do - tagged=`git rev-parse --not --verify tags/sa/$m 2>/dev/null` + tagged=`git rev-parse --not --verify tags/sa/$m 2>/dev/null` || + test "$m" != pu || exit + list=`git-rev-list $in_addition $tagged heads/$m 2>/dev/null` && test -n "$list" || continue -- 2.11.0