You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please describe the bug you're facing. Consider pasting example
Task is not getting re-executed after addition/deletion of files when used with --watch argument.
Below is the sample taskfile for it.
version: '3'tasks:
go-runs:
desc: Task for building a new binarycmds:
- go build -o main
- go install
- echo 'new binary available'sources:
- '**/*.go
Works fine without --watch arg when the command task go-runs is ran but have to do that manually every time which can be avoided by using --watch arg but its not working for it as explained above.