Skip to content

Commit

Permalink
fix: find and replace mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
pd93 committed Dec 29, 2023
1 parent bc88ad0 commit 61c0c32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion taskfile/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 61c0c32

Please sign in to comment.