From ddcbccf041d979716c2e1f7eb0490728434085ce Mon Sep 17 00:00:00 2001 From: Elias Naur Date: Wed, 7 Aug 2019 12:37:44 +0200 Subject: [PATCH] cmd/gio: simplify -o flag description Only mention the special case for iOS simulators. Signed-off-by: Elias Naur --- cmd/gio/gio.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/gio/gio.go b/cmd/gio/gio.go index b8d02e31..18b8b609 100644 --- a/cmd/gio/gio.go +++ b/cmd/gio/gio.go @@ -18,7 +18,7 @@ var ( target = flag.String("target", "", "specify target (ios, tvos, android, js)") archNames = flag.String("arch", "", "specify architecture(s) to include") buildMode = flag.String("buildmode", "exe", "specify buildmode: archive or exe") - destPath = flag.String("o", "", "output file (Android .aar or .apk file) or directory (iOS/tvOS .framework or webassembly files)") + destPath = flag.String("o", "", `output path. Specify a path with the ".app" suffix for iOS simulators.`) appID = flag.String("appid", "org.gioui.app", "app identifier (for -buildmode=exe)") printCommands = flag.Bool("x", false, "print the commands") keepWorkdir = flag.Bool("work", false, "print the name of the temporary work directory and do not delete it when exiting.")