Skip to content

Commit

Permalink
remove printing err when running root command
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhelfand committed Jan 21, 2020
1 parent de7e388 commit 35c3584
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions cmd/kn/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
package main

import (
"fmt"
"math/rand"
"os"
"time"
Expand All @@ -35,7 +34,6 @@ func main() {
rand.Seed(time.Now().UnixNano())
err = core.NewDefaultKnCommand().Execute()
if err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
}
Expand Down

0 comments on commit 35c3584

Please sign in to comment.