Skip to content

Commit

Permalink
needed backslash for config file path
Browse files Browse the repository at this point in the history
  • Loading branch information
fantasticrabbit committed Oct 26, 2021
1 parent 2e40f17 commit 9300a59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func Execute() {

func init() {
cobra.OnInitialize(initConfig)
rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file (default is $HOME/.clickup.yaml)")
rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file (default is $HOME/.clickup/config.yaml)")
}

// initConfig reads in config file, ENV variables if set, and determines authentication steps
Expand Down

0 comments on commit 9300a59

Please sign in to comment.