From 9e52dfff8038a727ea56606482c821463db4eec4 Mon Sep 17 00:00:00 2001 From: "Sascha L. Teichmann" Date: Tue, 7 Dec 2021 12:18:18 +0100 Subject: [PATCH] Added no-ini to config option. --- cmd/csaf_uploader/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/csaf_uploader/main.go b/cmd/csaf_uploader/main.go index d0e5b38..066c406 100644 --- a/cmd/csaf_uploader/main.go +++ b/cmd/csaf_uploader/main.go @@ -17,9 +17,9 @@ type options struct { Key *string `short:"k" long:"key" description:"OpenPGP key to sign the CSAF files" value-name:"KEY-FILE"` Passphrase *string `short:"P" long:"passphrase" description:"Passphrase to unlock the OpenPGP key" value-name:"PASSPHRASE"` Action string `short:"a" long:"action" choice:"upload" choice:"create" default:"upload" description:"Action to perform"` - Config *string `short:"c" long:"config" description:"Path to config ini file" value-name:"INI-FILE"` PasswordInteractive bool `short:"i" long:"password-interactive" description:"Enter password interactively" no-ini:"true"` PassphraseInteractive bool `short:"I" long:"passphrase-interacive" description:"Enter passphrase interactively" no-ini:"true"` + Config *string `short:"c" long:"config" description:"Path to config ini file" value-name:"INI-FILE" no-ini:"true"` } type processor struct {