[#583] authmate: Fix error messages and help

Signed-off-by: Angira Kekteeva <kira@nspcc.ru>
This commit is contained in:
Angira Kekteeva 2022-07-07 19:16:59 +04:00 committed by Kira
parent 5d52f056eb
commit ceb00eefc5

View file

@ -185,7 +185,7 @@ func issueSecret() *cli.Command {
}, },
&cli.StringFlag{ &cli.StringFlag{
Name: "bearer-rules", Name: "bearer-rules",
Usage: "rules for bearer token as plain json string", Usage: "rules for bearer token (filepath or a plain json string are allowed)",
Required: false, Required: false,
Destination: &eaclRulesFlag, Destination: &eaclRulesFlag,
}, },
@ -448,7 +448,7 @@ func parsePolicies(val string) (authmate.ContainerPolicies, error) {
if !json.Valid(data) { if !json.Valid(data) {
if data, err = os.ReadFile(val); err != nil { if data, err = os.ReadFile(val); err != nil {
return nil, fmt.Errorf("coudln't read json file or its content is invalid") return nil, fmt.Errorf("coudln't read json file or provided json is invalid")
} }
} }
@ -478,7 +478,7 @@ func getJSONRules(val string) ([]byte, error) {
} }
} }
return nil, fmt.Errorf("coudln't read json file or its content is invalid") return nil, fmt.Errorf("coudln't read json file or provided json is invalid")
} }
// getSessionRules reads json session rules. // getSessionRules reads json session rules.