Commit c904c63e1cecd38d94c5ba386b2600f5cb2e53ca

Stefan Sperling 2019-08-22T22:33:12

remove -d option from 'got tag' usage

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/got/got.c b/got/got.c
index 792a87a..1c38a37 100644
--- a/got/got.c
+++ b/got/got.c
@@ -3301,7 +3301,7 @@ __dead static void
 usage_tag(void)
 {
 	fprintf(stderr,
-	    "usage: %s tag [-r repository] -l | -d name | "
+	    "usage: %s tag [-r repository] | -l | "
 	        "[-m message] name [commit]\n", getprogname());
 	exit(1);
 }