cmd/ebitenmobile: Add newline to usage output (#1109)

This commit is contained in:
Steven Xie 2020-03-22 22:10:09 -04:00 committed by GitHub
parent 4d2a0287b5
commit c9a28219e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 <path>] [-classpath <path>] [-o output] [build flags] [package]", ebitenmobileCommand)
fmt.Fprintf(os.Stderr, "%s bind [-target android|ios] [-bootclasspath <path>] [-classpath <path>] [-o output] [build flags] [package]\n", ebitenmobileCommand)
os.Exit(2)
}
flag.Parse()