mirror of
https://github.com/go-task/task.git
synced 2025-11-23 22:24:45 +02:00
committed by
Andrey Nering
parent
2b21fd2eda
commit
600966ac26
@@ -1,5 +1,10 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## Unreleased
|
||||||
|
|
||||||
|
- Fix a missing a line break on log when using `--watch` mode (#1285, #1297 by
|
||||||
|
@FilipSolich).
|
||||||
|
|
||||||
## v3.28.0 - 2023-07-24
|
## v3.28.0 - 2023-07-24
|
||||||
|
|
||||||
- Added the ability to
|
- Added the ability to
|
||||||
|
|||||||
2
watch.go
2
watch.go
@@ -27,7 +27,7 @@ func (e *Executor) watchTasks(calls ...taskfile.Call) error {
|
|||||||
tasks[i] = c.Task
|
tasks[i] = c.Task
|
||||||
}
|
}
|
||||||
|
|
||||||
e.Logger.Errf(logger.Green, "task: Started watching for tasks: %s", strings.Join(tasks, ", "))
|
e.Logger.Errf(logger.Green, "task: Started watching for tasks: %s\n", strings.Join(tasks, ", "))
|
||||||
|
|
||||||
ctx, cancel := context.WithCancel(context.Background())
|
ctx, cancel := context.WithCancel(context.Background())
|
||||||
for _, c := range calls {
|
for _, c := range calls {
|
||||||
|
|||||||
Reference in New Issue
Block a user