Merge pull request #229 from ssb-ngi-pointer/cblgh-patch-insert-user-help

change order displayed in help; flags first
This commit is contained in:
Henry 2021-05-31 12:22:19 +02:00 committed by GitHub
commit 77d85824ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ func main() {
func cliMissingArguments(message string) {
executable := strings.TrimPrefix(os.Args[0], "./")
fmt.Fprintf(os.Stderr, "%s: %s\nusage:%s <@base64-encoded-public-key=.ed25519> <optional flags>\n", executable, message, executable)
fmt.Fprintf(os.Stderr, "%s: %s\nusage:%s <optional flags> <@base64-encoded-public-key=.ed25519>\n", executable, message, executable)
flag.Usage()
os.Exit(1)
}