apppackio / apppack

Call to os.Exit or log.Fatal and friends made in function using defer CRT-D0011
Bug risk
Major
1 occurrence in this check
os.Exit will exit, and defer updateCancel() will not run
101	// run command
102	if err := rootCmd.Execute(); err != nil {
103		fmt.Println(err)
104		os.Exit(1)105	}
106
107	updateCancel() // if the update checker hasn't completed by now, abort it