Skip to content

Commit

Permalink
More fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
drewstinnett committed Jan 19, 2024
1 parent 3529dfe commit 0c41107
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ brews:
- name: 'letseat'
repository:
owner: drewstinnett
name: homebrew-letseat
name: homebrew-tap
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
description: "Figure out where to go for dinner!"
homepage: "https://github.com/drewstinnett/letseat"
Expand Down
8 changes: 4 additions & 4 deletions cmd/letseat/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ var (
cfgFile string
g *gout.Client
config configPaths
version string = "dev"
)

type configPaths struct {
Expand All @@ -29,10 +30,9 @@ type configPaths struct {
// rootCmd represents the base command when called without any subcommands
func newRootCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "letseat",
Short: "Decide what to eat!",
// Uncomment the following line if your bare application
// has an action associated with it:
Use: "letseat",
Short: "Decide what to eat!",
Version: version,
SilenceUsage: true,
SilenceErrors: true,
PersistentPreRun: func(cmd *cobra.Command, args []string) {
Expand Down

0 comments on commit 0c41107

Please sign in to comment.