Skip to content

Commit

Permalink
🐛 fix add and remove long description as it will cause an error
Browse files Browse the repository at this point in the history
  • Loading branch information
xarunoba committed Jun 2, 2024
1 parent 4848c55 commit d39b1b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/cli/add.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ var addCmd = &cobra.Command{
Aliases: []string{"a"},
Short: "Add file/s to config",
Long: `Adds file/s to config.
This will add file/s to the ` + app.ConfigFile().Name + ` for ccoco to generate.
This will add file/s to the config file for ccoco to generate.
`,
Args: cobra.MinimumNArgs(1),
PreRunE: func(cmd *cobra.Command, args []string) error {
Expand Down
2 changes: 1 addition & 1 deletion internal/cli/remove.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ var removeCmd = &cobra.Command{
Aliases: []string{"rm"},
Short: "Remove files to config",
Long: `Remove files to config.
This will remove file/s from the ` + app.ConfigFile().Name + ` for ccoco to generate.`,
This will remove file/s from the config file for ccoco to generate.`,
Args: cobra.MinimumNArgs(1),
PreRunE: func(cmd *cobra.Command, args []string) error {
instance, err := ccoco.New()
Expand Down

0 comments on commit d39b1b7

Please sign in to comment.