Skip to content

Commit

Permalink
fix: look in parent dir for tasks.toml (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
notnmeyer authored Aug 29, 2024
1 parent 4f41a74 commit e8dec55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/tsk/tsk.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func main() {
flag.BoolVarP(&opts.listTasks, "list", "l", false, "list tasks")
flag.StringVarP(&opts.output, "output", "o", "text", fmt.Sprintf("output format (applies only to --list) (one of: %s, %s)", string(output.Text), string(output.Markdown)))
flag.BoolVarP(&opts.pure, "pure", "", false, "don't inherit the parent env")
flag.StringVarP(&opts.taskFile, "file", "f", "tasks.toml", "taskfile to use")
flag.StringVarP(&opts.taskFile, "file", "f", "", "taskfile to use")
flag.BoolVarP(&help, "help", "h", false, "")
flag.Parse()

Expand Down

0 comments on commit e8dec55

Please sign in to comment.