1
0
mirror of https://github.com/go-task/task.git synced 2025-01-12 04:34:11 +02:00

fix: find and replace mistake

This commit is contained in:
Pete Davison 2023-12-29 20:42:30 +00:00
parent bc88ad0de2
commit 61c0c32c2a
No known key found for this signature in database
GPG Key ID: 2ABFD790DF2521A2

View File

@ -31,7 +31,7 @@ func NewNode(
node, err = NewFileNode(uri, opts...)
}
if node.Remote() && !experiments.RemoteTaskfiles {
return nil, errors.New("task: Remote taskfiles are not enabled. You can read more about this experiment and how to enable it at https://ast.dev/experiments/remote-taskfiles")
return nil, errors.New("task: Remote taskfiles are not enabled. You can read more about this experiment and how to enable it at https://taskfile.dev/experiments/remote-taskfiles")
}
return node, err
}