T
Task•5d ago
sedyh

Run command for each source found by pattern without find.

Hello, is there a coreutils-free alternative for something like:
gen:
sources: [internal/*_src.go]
generates: [internal/*_gen.go]
vars:
LIST: {sh: find internal -name '*_src.go'}
cmds:
- for: {var: LIST}
- cmd: go tool gen {{.ITEM}}
gen:
sources: [internal/*_src.go]
generates: [internal/*_gen.go]
vars:
LIST: {sh: find internal -name '*_src.go'}
cmds:
- for: {var: LIST}
- cmd: go tool gen {{.ITEM}}
6 Replies
andreynering
andreynering•5d ago
Hi @sedyh, Have you tried for: source? https://taskfile.dev/reference/schema/#for
sedyh
sedyhOP•5d ago
Like this? Hmm, its not showing me anything... I have files in internal. My version is: v3.42.1
gen:
sources:
- internal/*
cmds:
- for: source
cmd: echo {{.ITEM}}
gen:
sources:
- internal/*
cmds:
- for: source
cmd: echo {{.ITEM}}
sedyh
sedyhOP•5d ago
Yay, it works, thanks. So thats typo in the docs?
sedyh
sedyhOP•3d ago
@andreynering, is it possible to do the same with generates? I want to bypass missing fingerprinting by using status: test -f {{.ITEM}} for each file from generates: - pkg/protocol/**/*. I.e. I want to allow this syntax, I think I can make a PR...
version: '3'

tasks:
gen:
sources:
- protocol/**/*.proto
generates:
- pkg/protocol/**/*.pb.go
status:
- for: generates
cmd: test -f {{.ITEM}}
cmds:
- buf generate
version: '3'

tasks:
gen:
sources:
- protocol/**/*.proto
generates:
- pkg/protocol/**/*.pb.go
status:
- for: generates
cmd: test -f {{.ITEM}}
cmds:
- buf generate

Did you find this page helpful?