aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2025-05-06 21:48:30 -0300
committerEuAndreh <eu@euandre.org>2025-05-06 21:48:30 -0300
commit7f6fe701d34fb0df4718bf1fd73a5648aec8bb8d (patch)
tree91812476db35ee4d97354c7a43f796973c184080
parentsrc/gistatic.go: Use ExitIf() from gobang (diff)
downloadgistatic-7f6fe701d34fb0df4718bf1fd73a5648aec8bb8d.tar.gz
gistatic-7f6fe701d34fb0df4718bf1fd73a5648aec8bb8d.tar.xz
src/gistatic.go: Add missing trailing newline to usage() output
-rw-r--r--src/gistatic.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gistatic.go b/src/gistatic.go
index d326162..fdbd2c4 100644
--- a/src/gistatic.go
+++ b/src/gistatic.go
@@ -21,7 +21,7 @@ type argsT struct{
func usage(argv0 string, w io.Writer) {
fmt.Fprintf(
w,
- "Usage: %s [-o DIRECTORY] [-u CLONE_URL] REPOSITORY",
+ "Usage: %s [-o DIRECTORY] [-u CLONE_URL] REPOSITORY\n",
argv0,
)
}