Skip to content

Commit 0af96f1

Browse files
typo, fixed subcommand flags assigned to get command
1 parent 2537c40 commit 0af96f1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cmd/task.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ var taskCmd = &cobra.Command{
3636
func init() {
3737
getCmd.AddCommand(taskCmd)
3838

39-
getCmd.Flags().StringP("taskid", "i", "", "Clickup task ID to get")
40-
getCmd.Flags().BoolP("file", "f", false, "output to file <taskID>.json")
39+
taskCmd.Flags().StringP("taskid", "i", "", "Clickup task ID to get")
40+
taskCmd.Flags().BoolP("file", "f", false, "output to file clickup_<taskID>.json")
4141
}

0 commit comments

Comments
 (0)