This caused a significant holdup in testing this function. Though
this is a very small change, I believe it can potentially save
future users a lot of frustration.
Change-Id: I1994391ab5cabdbec4aa7e751a5663f6de726f4d
Signed-off-by: Eric Ball <eball@linuxfoundation.org>
@click.argument('tag')
@click.pass_context
def git_tag(ctx, tag):
- """Sigul sign a git tag."""
+ """Sigul sign an annotated git tag."""
status = subprocess.call(['sign', 'git-tag', tag])
sys.exit(status)