summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go7
1 files changed, 1 insertions, 6 deletions
diff --git a/main.go b/main.go
index 5858518..30ae9c4 100644
--- a/main.go
+++ b/main.go
@@ -29,12 +29,7 @@ import (
)
func main() {
- ci, err := cli.NewInterface(os.Stdin, os.Stdout, os.Stderr)
- if err != nil {
- fmt.Fprintln(os.Stderr, "FATAL: initialization failed")
- os.Exit(255)
- }
-
+ ci := cli.NewInterface(os.Stdin, os.Stdout, os.Stderr)
if len(earlyerrors.Get()) > 0 {
for _, msg := range earlyerrors.Get() {
ci.ShowError(msg)