1
0
mirror of https://github.com/go-task/task.git synced 2025-08-10 22:42:19 +02:00

Add CHANGELOG + gofmt for #557

This commit is contained in:
Andrey Nering
2021-09-06 10:30:45 -03:00
parent 5ef1651151
commit 6c73ab823b
2 changed files with 6 additions and 2 deletions

View File

@@ -1,5 +1,10 @@
# Changelog
## Unreleased
- Add support for including Taskfiles in the home directory by using `~`
([#539](https://github.com/go-task/task/issues/539), [#557](https://github.com/go-task/task/pull/557)).
## 3.7.3 - 2021-09-04
- Add official support to Apple M1 ([#564](https://github.com/go-task/task/pull/564), [#567](https://github.com/go-task/task/pull/567)).

View File

@@ -54,8 +54,7 @@ func Taskfile(dir string, entrypoint string) (*taskfile.Taskfile, error) {
if err != nil {
return err
}
if ! filepath.IsAbs(path) {
if !filepath.IsAbs(path) {
path = filepath.Join(dir, path)
}