2
0
mirror of https://github.com/linka-cloud/d2vm.git synced 2024-11-05 08:16:23 +00:00

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

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() {