diff --git a/cmd/root.go b/cmd/root.go index eb27e3d..8ea9158 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -40,7 +40,6 @@ selected.`, PersistentPreRunE: func(cmd *cobra.Command, args []string) error { err := initializeConfig(cmd.Root()) - fmt.Println("PersistentPreRunE") a.SetVerbose(verbose) // Set defaults or explicitely set directories diff --git a/internal/app/app.go b/internal/app/app.go index 7eb7015..0b451fa 100644 --- a/internal/app/app.go +++ b/internal/app/app.go @@ -106,7 +106,6 @@ func (a *App) Init(o ...func(*App) error) error { } } - fmt.Println("init") a.DumpConfig() err := a.readDistributions() @@ -759,7 +758,7 @@ func (a *App) versions(dist string) error { } fmt.Printf("%s ", modifier) } - fmt.Println() + return nil }