Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
BeryJu committed Nov 23, 2024
1 parent ed8a66f commit 833cd02
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions cmd/cli/main/main.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
package main

import "beryju.io/gravity/cmd/cli"
import (
"os"

"beryju.io/gravity/cmd/cli"
)

func main() {
cli.CLICmd.Use = "gravity-cli"
cli.CLICmd.Execute()
err := cli.CLICmd.Execute()
if err != nil {
os.Exit(1)
}
}

0 comments on commit 833cd02

Please sign in to comment.