diff --git a/CHANGELOG.md b/CHANGELOG.md index fe3366b0..899769c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +- Follow symlinks on `sources` + ([#826](https://github.com/go-task/task/issues/826), [#831](https://github.com/go-task/task/pull/831)). - Improvements and fixes to Bash completion ([#835](https://github.com/go-task/task/pull/835), [#844](https://github.com/go-task/task/pull/844)). diff --git a/testdata/evaluate_symlinks_in_paths/Taskfile.yaml b/testdata/evaluate_symlinks_in_paths/Taskfile.yaml index 4940c9af..bc090f76 100644 --- a/testdata/evaluate_symlinks_in_paths/Taskfile.yaml +++ b/testdata/evaluate_symlinks_in_paths/Taskfile.yaml @@ -1,13 +1,16 @@ version: '3' + tasks: default: sources: - src/**/* cmds: - echo "some job" + test-sym: cmds: - echo "shared file source changed" > src/shared/b + reset: cmds: - echo "shared file source" > src/shared/b