summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/main.go b/main.go
index 2fe83fc..437ebff 100644
--- a/main.go
+++ b/main.go
@@ -8,5 +8,6 @@ import (
)
func main() {
- (&cli.Command{}).Run(context.Background(), os.Args)
+ cmd := new(cli.Command)
+ cmd.Run(context.Background(), os.Args)
}