Fix wrong order of flag.String values in signer-ed25519.go.
authorRobert Sesek <rsesek@bluestatic.org>
Sat, 4 Jan 2020 23:08:24 +0000 (18:08 -0500)
committerRobert Sesek <rsesek@bluestatic.org>
Sat, 4 Jan 2020 23:08:24 +0000 (18:08 -0500)
dev/signer-ed25519.go

index 405b3d27f10e65384b25f6412dfd56dc16775d17..b7e91f027b5c1410482b3378e2048fdb70c3ce90 100644 (file)
@@ -53,9 +53,9 @@ import (
 )
 
 var (
-       keyPath  = flag.String("key", "Path to the key file.", "")
-       inPath   = flag.String("file", "Path to the file to sign/verify.", "")
-       sigPath  = flag.String("signature", "Path to the signature file.", "")
+       keyPath  = flag.String("key", "", "Path to the key file.")
+       inPath   = flag.String("file", "", "Path to the file to sign/verify.")
+       sigPath  = flag.String("signature", "", "Path to the signature file.")
        doSign   = flag.Bool("sign", false, "Sign the given file.")
        doVerify = flag.Bool("verify", false, "Verify the given file.")
        doNewKey = flag.Bool("new-key", false, "Generate a new keypair.")