From 82252ce1fffe8a9f37ce09be73e58b23e4d63675 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Wed, 20 May 2026 22:08:37 +0200 Subject: [PATCH] Use latest for templ CLI in justfile --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index 49a5d8c..6e8be40 100644 --- a/justfile +++ b/justfile @@ -7,7 +7,7 @@ templ-install: @if ! command -v templ > /dev/null; then \ read -p "Go's 'templ' is not installed on your machine. Do you want to install it? [Y/n] " choice; \ if [ "$$choice" != "n" ] && [ "$$choice" != "N" ]; then \ - go install github.com/a-h/templ/cmd/templ@v0.3.1020; \ + go install github.com/a-h/templ/cmd/templ@latest; \ if [ ! -x "$$(command -v templ)" ]; then \ echo "templ installation failed. Exiting..."; \ exit 1; \