From c9a28219e8cdd773eb0d4e517a60b5ab8ef3da61 Mon Sep 17 00:00:00 2001 From: Steven Xie Date: Sun, 22 Mar 2020 22:10:09 -0400 Subject: [PATCH] cmd/ebitenmobile: Add newline to usage output (#1109) --- cmd/ebitenmobile/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/ebitenmobile/main.go b/cmd/ebitenmobile/main.go index a9dce534e..17522fda5 100644 --- a/cmd/ebitenmobile/main.go +++ b/cmd/ebitenmobile/main.go @@ -35,7 +35,7 @@ const ( func init() { flag.Usage = func() { // This message is copied from `gomobile bind -h` - fmt.Fprintf(os.Stderr, "%s bind [-target android|ios] [-bootclasspath ] [-classpath ] [-o output] [build flags] [package]", ebitenmobileCommand) + fmt.Fprintf(os.Stderr, "%s bind [-target android|ios] [-bootclasspath ] [-classpath ] [-o output] [build flags] [package]\n", ebitenmobileCommand) os.Exit(2) } flag.Parse()