diff --git a/cmd/download.go b/cmd/download.go index 7d2dc64..a33e1a7 100644 --- a/cmd/download.go +++ b/cmd/download.go @@ -32,7 +32,7 @@ func init() { func newDownloadCmd(resourceType string) *cobra.Command { cmd := &cobra.Command{ - Use: fmt.Sprintf("%s ", resourceType), + Use: fmt.Sprintf("%s <%s_id>", resourceType, resourceType), Short: fmt.Sprintf("Download songs from %s", resourceType), Args: cobra.ExactArgs(1), PreRunE: func(cmd *cobra.Command, args []string) error { diff --git a/cmd/root.go b/cmd/root.go index a2441e5..7624167 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -23,5 +23,5 @@ var RootCmd = &cobra.Command{ } func init() { - RootCmd.PersistentFlags().StringVar(&cfgPath, "config", "", "config file (default $HOME/.godeez)") + RootCmd.PersistentFlags().StringVar(&cfgPath, "config", "", "config file (default ~/.godeez/config.toml)") }