fix execution exit code on error

Signed-off-by: Adphi <philippe.adrien.nousse@gmail.com>
This commit is contained in:
Adphi 2023-03-01 13:30:25 +01:00 committed by Adphi
parent fb33b2a74e
commit 93ba19a1fa
1 changed files with 3 additions and 1 deletions

View File

@ -75,7 +75,9 @@ func main() {
fmt.Println()
cancel()
}()
rootCmd.ExecuteContext(ctx)
if err := rootCmd.ExecuteContext(ctx); err != nil {
logrus.Fatal(err)
}
}
func init() {