mirror of
https://github.com/go-task/task.git
synced 2024-12-12 10:45:49 +02:00
21 lines
367 B
YAML
21 lines
367 B
YAML
version: '3'
|
|
|
|
tasks:
|
|
build:
|
|
cmds:
|
|
- cp ./source.txt ./generated.txt
|
|
sources:
|
|
- ./**/glob-with-inexistent-file.txt
|
|
- ./source.txt
|
|
generates:
|
|
- ./generated.txt
|
|
method: checksum
|
|
|
|
build-with-status:
|
|
cmds:
|
|
- cp ./source.txt ./generated.txt
|
|
sources:
|
|
- ./source.txt
|
|
status:
|
|
- test -f ./generated.txt
|