Skip to content

Commit

Permalink
Pass non-empty string slice to example app Run (urfave#1364)
Browse files Browse the repository at this point in the history
so that it does not panic when run.
  • Loading branch information
meatballhat authored and dearchap committed Apr 24, 2022
1 parent 6f9a4a7 commit 560198e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/example-cli/example-cli.go
Expand Up @@ -7,5 +7,5 @@ import (
)

func main() {
(&cli.App{}).Run([]string{})
(&cli.App{}).Run([]string{""})
}

0 comments on commit 560198e

Please sign in to comment.