Skip to content
This repository was archived by the owner on Apr 25, 2024. It is now read-only.

Commit 64726ea

Browse files
committed
Fix missing cert/key error message
1 parent a098ed6 commit 64726ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmd/root.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ var rootCmd = &cobra.Command{
5252
log.Printf("Necessary certificate and/or key file not found.")
5353
log.Fatalf(
5454
"Store a certificate to \"%s\" and a key file to \"%s\" or provide the --cert and --key flags",
55-
certFilename,
56-
keyFilename,
55+
certFile,
56+
keyFile,
5757
)
5858
}
5959

0 commit comments

Comments
 (0)