From df0206a6b33bcbacc9e773d0eda887314d9d6cc9 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Mon, 1 Feb 2021 19:34:33 +0100 Subject: [PATCH] errcheck: utils Signed-off-by: Sebastiaan van Stijn --- utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.go b/utils.go index 85413c291..f3244a497 100644 --- a/utils.go +++ b/utils.go @@ -39,7 +39,7 @@ func checkArgs(context *cli.Context, expected, checkType int) error { if err != nil { fmt.Printf("Incorrect Usage.\n\n") - cli.ShowCommandHelp(context, cmdName) + _ = cli.ShowCommandHelp(context, cmdName) return err } return nil