1
0
mirror of https://github.com/go-task/task.git synced 2025-01-22 05:10:17 +02:00

CHANGELOG for #831

Closes #826
This commit is contained in:
Andrey Nering 2022-08-23 18:43:04 -03:00 committed by GitHub
parent b6c25e3ad9
commit 8788703ac6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View File

@ -2,6 +2,8 @@
## Unreleased ## 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 - Improvements and fixes to Bash completion
([#835](https://github.com/go-task/task/pull/835), [#844](https://github.com/go-task/task/pull/844)). ([#835](https://github.com/go-task/task/pull/835), [#844](https://github.com/go-task/task/pull/844)).

View File

@ -1,13 +1,16 @@
version: '3' version: '3'
tasks: tasks:
default: default:
sources: sources:
- src/**/* - src/**/*
cmds: cmds:
- echo "some job" - echo "some job"
test-sym: test-sym:
cmds: cmds:
- echo "shared file source changed" > src/shared/b - echo "shared file source changed" > src/shared/b
reset: reset:
cmds: cmds:
- echo "shared file source" > src/shared/b - echo "shared file source" > src/shared/b