Note in git-tag docs that tag must be annotated 42/15742/1
authorEric Ball <eball@linuxfoundation.org>
Wed, 22 May 2019 21:12:27 +0000 (14:12 -0700)
committerEric Ball <eball@linuxfoundation.org>
Wed, 22 May 2019 21:12:27 +0000 (14:12 -0700)
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>
lftools/cli/sign.py

index 5a4a00a..6de41cc 100644 (file)
@@ -42,7 +42,7 @@ def directory(ctx, directory, mode):
 @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)