From ad049e85273175e72f95a3cbe53388b5568ea13f Mon Sep 17 00:00:00 2001 From: Jari Kolehmainen Date: Tue, 17 Nov 2020 08:53:57 +0200 Subject: [PATCH] fix linux Signed-off-by: Jari Kolehmainen --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c316f48789..cd91d8c9e5 100644 --- a/Makefile +++ b/Makefile @@ -66,10 +66,10 @@ else endif $(extension_node_modules): - cd $(dir $@) && npm install --no-audit --no-fund + cd $(@:/node_modules=) && npm install --no-audit --no-fund $(extension_dists): - cd $(dir $@) && npm run build + cd $(@:/node_modules=) && npm run build .PHONY: build-extensions build-extensions: $(extension_node_modules) $(extension_dists)