1
0
mirror of https://github.com/go-task/task.git synced 2025-08-10 22:42:19 +02:00

feat: add support for single cmd task syntax (#1131)

This commit is contained in:
Tim De Pauw
2023-06-11 03:08:28 +02:00
committed by GitHub
parent 59e99caf8a
commit e2c1b3b931
5 changed files with 34 additions and 1 deletions

1
testdata/single_cmd_dep/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
*.txt

8
testdata/single_cmd_dep/Taskfile.yml vendored Normal file
View File

@@ -0,0 +1,8 @@
version: "3"
tasks:
foo:
deps: [bar]
cmd: echo foo > foo.txt
bar: echo bar > bar.txt