From 4e8d858503af5c0dd99143de20a32bf1317ef9c2 Mon Sep 17 00:00:00 2001 From: Hubertbits <170125456+hubertbits@users.noreply.github.com> Date: Sat, 12 Apr 2025 01:06:42 +0200 Subject: [PATCH] Makefile: fix wording for install-go-deps to install-deps Signed-off-by: yxxhero --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 07476d06..011759e1 100644 --- a/Makefile +++ b/Makefile @@ -33,14 +33,14 @@ endef all: build .PHONY: all -# Install all required Go tools -install-go-deps: +# Install all required tools +install-deps: build-test-tools @echo "Installing Go dependencies..." @go install github.com/daixiang0/gci@latest @go install github.com/tcnksm/ghr@latest @go install github.com/mitchellh/gox@latest @echo "Go dependencies installed successfully" -.PHONY: install-go-deps +.PHONY: install-deps # Check for all required dependencies check-deps: @@ -70,8 +70,8 @@ check-deps: echo "Go tools installed successfully" ; \ else \ printf "\nMissing Go tools:$$missing_go_tools\n" ; \ - echo "Run 'make install-go-deps' to install them, or run 'make check-deps INSTALL_DEPS=1' to check and install." ; \ - missing_deps="$$missing_deps\n- Go tools: run 'make install-go-deps'" ; \ + echo "Run 'make install-deps' to install them, or run 'make check-deps INSTALL_DEPS=1' to check and install." ; \ + missing_deps="$$missing_deps\n- Go tools: run 'make install-deps'" ; \ fi ; \ fi ; \ if [ -n "$$missing_deps" ] && [ -z "$$INSTALL_DEPS" ]; then \