Skip to content

Commit

Permalink
Restore support for taskfile
Browse files Browse the repository at this point in the history
Fixes: #226
  • Loading branch information
ssbarnea committed Sep 3, 2024
1 parent 6df92e9 commit c7574c7
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/mk/tools/taskfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ def __init__(self, path=".") -> None:

def is_present(self, path: Path) -> bool:
valid_taskfiles = [
"Taskfile.yml"
"taskfile.yml"
"Taskfile.yaml"
"taskfile.yaml"
"Taskfile.dist.yml"
"taskfile.dist.yml"
"Taskfile.dist.yaml"
"Taskfile.yml",
"taskfile.yml",
"Taskfile.yaml",
"taskfile.yaml",
"Taskfile.dist.yml",
"taskfile.dist.yml",
"Taskfile.dist.yaml",
"taskfile.dist.yaml",
]

Expand Down

0 comments on commit c7574c7

Please sign in to comment.