diff --git a/taskfile/node.go b/taskfile/node.go index 43734f79..d71ede73 100644 --- a/taskfile/node.go +++ b/taskfile/node.go @@ -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 }