From 61c0c32c2a61ddebe32604314c7650195059e134 Mon Sep 17 00:00:00 2001 From: Pete Davison Date: Fri, 29 Dec 2023 20:42:30 +0000 Subject: [PATCH] fix: find and replace mistake --- taskfile/node.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }