Exemplo n.º 1
0
Arquivo: main.go Projeto: github/hub
func main() {
	defer github.CaptureCrash()

	err := commands.CmdRunner.Execute()
	if !err.Ran {
		ui.Errorln(err.Error())
	}
	os.Exit(err.ExitCode)
}
Exemplo n.º 2
0
func main() {
	defer github.CaptureCrash()

	err := commands.CmdRunner.Execute()
	os.Exit(err.ExitCode)
}