From fe1ed582bce9224ca8f790f59933ce44b71a66ec Mon Sep 17 00:00:00 2001 From: Deluan Date: Sun, 25 May 2025 20:24:51 -0400 Subject: [PATCH] build(makefile): add golangci-lint installation step to setup Signed-off-by: Deluan --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8425f699..9d610fc0 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ CROSS_TAGLIB_VERSION ?= 2.0.2-1 UI_SRC_FILES := $(shell find ui -type f -not -path "ui/build/*" -not -path "ui/node_modules/*") -setup: check_env download-deps setup-git ##@1_Run_First Install dependencies and prepare development environment +setup: check_env download-deps install-golangci-lint setup-git ##@1_Run_First Install dependencies and prepare development environment @echo Downloading Node dependencies... @(cd ./ui && npm ci) .PHONY: setup