From: Catalin Marinas Date: Thu, 17 Dec 2009 23:31:23 +0000 (+0000) Subject: Fix "stg applied" usage in contrib/stg-dispatch X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/commitdiff_plain/085481eaeefb88b5cd5e5e2bdac17f2deab57127?hp=-c Fix "stg applied" usage in contrib/stg-dispatch This command was replaced by "stg series --applied" but the above shell script hasn't been changed. This is a fix for bug #557475. Signed-off-by: Catalin Marinas --- 085481eaeefb88b5cd5e5e2bdac17f2deab57127 diff --git a/contrib/stg-dispatch b/contrib/stg-dispatch index e9cfb05..e98d91b 100755 --- a/contrib/stg-dispatch +++ b/contrib/stg-dispatch @@ -26,7 +26,7 @@ fi TOPATCH="$1" shift -stg applied | grep "^$TOPATCH\$" >/dev/null || +stg series --applied --noprefix | grep "^$TOPATCH\$" >/dev/null || die "cannot dispatch to unapplied patch '$TOPATCH'" CURRENTPATCH=$(stg top)