From 2f2bd05734503839d7ff08139d69ed6b5ecfddfc Mon Sep 17 00:00:00 2001 From: RhodeCode Admin Date: Tue, 19 Dec 2023 12:59:14 +0100 Subject: [PATCH] chore(dev): fix web-build command --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2f219178..327be608 100644 --- a/Makefile +++ b/Makefile @@ -83,7 +83,7 @@ docs-cleanup: .PHONY: web-build ## Build JS packages static/js web-build: - docker run -it --rm -v $(PWD):/project --workdir=/project rhodecode/static-files-build:16 -c "npm install && grunt" + docker run -it --rm -v $(PWD):/project --workdir=/project rhodecode/static-files-build:16 -c "npm install && /project/node_modules/.bin/grunt" # run static file check ./rhodecode/tests/scripts/static-file-check.sh rhodecode/public/ rm -rf node_modules