From 70ad541c01446a02f879fd8038438d5dd2e20319 Mon Sep 17 00:00:00 2001 From: Michael Mayer Date: Thu, 20 Jul 2023 08:36:01 +0200 Subject: [PATCH] Develop: Update install-go-tools.sh #3555 Signed-off-by: Michael Mayer --- scripts/dist/install-go-tools.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/dist/install-go-tools.sh b/scripts/dist/install-go-tools.sh index d1773c3fb..28b193181 100755 --- a/scripts/dist/install-go-tools.sh +++ b/scripts/dist/install-go-tools.sh @@ -41,11 +41,11 @@ mkdir -p "$GOPATH/src" case $DESTARCH in arm | ARM | aarch | armv7l | armhf) # no additional tools on ARMv7 to reduce build time - echo "Skipping installation of goimports, go-mod-outdated, and richgo." + echo "Skipping installation of Go tools." ;; *) - echo "Installing goimports, go-mod-outdated, and richgo in /usr/local/bin..." + echo "Installing Go tools in /usr/local/bin..." GOBIN="/usr/local/bin" go install golang.org/x/tools/cmd/goimports@latest GOBIN="/usr/local/bin" go install github.com/psampaz/go-mod-outdated@latest GOBIN="/usr/local/bin" go install github.com/mikefarah/yq/v4@latest