From 8db03fc4946743b74b825f6c32e82479df729a86 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Thu, 20 Aug 2026 21:24:08 +0530 Subject: [PATCH] fix(ci): correct misleading check-deps message for hugo binary The check-deps target verifies the npm-packaged hugo binary in node_modules/.bin, not a system-installed local hugo binary. Update the echo message to accurately reflect this. Fixes #1211 Signed-off-by: Rounak Agarwal --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index caeb0c7547f..a8802549f40 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 the npm-packaged 'hugo' binary is present..." @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."