From e088ed2c7d95548c76685aea8d2a3c457d796bb6 Mon Sep 17 00:00:00 2001 From: Andre Harms Date: Wed, 18 Feb 2026 15:35:39 +0100 Subject: [PATCH] fix: add goimports installation to project script --- scripts/project.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/project.sh b/scripts/project.sh index 1d570c6a..654d0401 100755 --- a/scripts/project.sh +++ b/scripts/project.sh @@ -22,6 +22,8 @@ elif [ "$action" = "tools" ]; then # go install github.com/hashicorp/terraform-plugin-docs/cmd/tfplugindocs@v0.21.0 go install github.com/hashicorp/terraform-plugin-docs/cmd/tfplugindocs@v0.24.0 + + go install golang.org/x/tools/cmd/goimports@0.42.0 else echo "Invalid action: '$action', please use $0 help for help" fi