From c2a4e4470b6c37d30d248aba640b92cec659d1c9 Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Wed, 17 Sep 2025 18:32:49 -0300 Subject: [PATCH] docs: update sprig links to our domain --- website/src/blog/any-variables.md | 4 ++-- website/src/docs/guide.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/website/src/blog/any-variables.md b/website/src/blog/any-variables.md index cb10bc73..5b260a45 100644 --- a/website/src/blog/any-variables.md +++ b/website/src/blog/any-variables.md @@ -144,5 +144,5 @@ We're looking for feedback on a couple of different proposals, so please give them a go and let us know what you think. :pray: [v3.37.0]: https://github.com/go-task/task/releases/tag/v3.37.0 -[slim-sprig-math]: https://go-task.github.io/slim-sprig/math.html -[slim-sprig-list]: https://go-task.github.io/slim-sprig/lists.html +[slim-sprig-math]: https://sprig.taskfile.dev/math.html +[slim-sprig-list]: https://sprig.taskfile.dev/lists.html diff --git a/website/src/docs/guide.md b/website/src/docs/guide.md index a4d6b5e5..36982383 100644 --- a/website/src/docs/guide.md +++ b/website/src/docs/guide.md @@ -467,7 +467,7 @@ includes: Vars declared in the included Taskfile have preference over the variables in the including Taskfile! If you want a variable in an included Taskfile to be overridable, use the -[default function](https://go-task.github.io/slim-sprig/defaults.html): +[default function](https://sprig.taskfile.dev/defaults.html): `MY_VAR: '{{.MY_VAR | default "my-default-value"}}'`. :::