From 5e3ca4bd77bb461cc20750a48b8fc56d16c48f36 Mon Sep 17 00:00:00 2001 From: Ayana Sarkar Date: Thu, 17 Sep 2026 19:23:02 +0530 Subject: [PATCH] fix(ci): correct misleading check-deps message for hugo binary (#1211) Signed-off-by: Ayana Sarkar --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index caeb0c7547f..c6b4eeeff06 100644 --- a/Makefile +++ b/Makefile @@ -52,7 +52,7 @@ include .github/build/Makefile.show-help.mk ## Verify required commands and local dependencies are present. check-deps: - @echo "Checking if 'npm' and local 'hugo' binary are present..." + @echo "Checking if 'npm' is installed and 'hugo' is available via node_modules (installed by 'make setup')..." @command -v npm > /dev/null || { echo "Error: 'npm' not found. Please install Node.js and npm."; exit 1; } @test -x node_modules/.bin/hugo || { echo "Error: Hugo binary not found in node_modules. Please run 'make setup' first."; exit 1; } @echo "Dependencies check passed."