Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
shrimalmadhur committed Oct 12, 2023
1 parent f15d5d2 commit 27ecd96
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions cmd/elkey/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,17 @@ import (
)

func main() {
var app *cli.App

app = cli.NewApp()
app := cli.NewApp()
app.Name = "Eigenlayer batch key manager"
app.Commands = []*cli.Command{
commandGenerate,
}

if err := app.Run(os.Args); err != nil {
fmt.Fprintln(os.Stderr, err)
_, err := fmt.Fprintln(os.Stderr, err)
if err != nil {
return
}
os.Exit(1)
}

Expand Down

0 comments on commit 27ecd96

Please sign in to comment.