From 3ceb9876084325bfc9696a9b2c385a7f49b5e96f Mon Sep 17 00:00:00 2001 From: Daniel Holbach Date: Tue, 15 Jan 2019 09:29:09 +0530 Subject: [PATCH] Fix bind-mount volume path "client/client" yarn will otherwise complain about missing client/package.json in "make client-test" Signed-off-by: Daniel Holbach --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 608b00e90..bd7cfa163 100644 --- a/Makefile +++ b/Makefile @@ -183,7 +183,7 @@ client/build-external/index.html: $(shell find client/app -type f) $(SCOPE_UI_TO client-test: $(shell find client/app/scripts -type f) $(SCOPE_UI_TOOLCHAIN_UPTODATE) $(SUDO) docker run $(RM) $(RUN_FLAGS) \ -v $(shell pwd)/.cache:/home/weave/scope/.cache \ - -v $(shell pwd)/client/client:/home/weave/scope/client \ + -v $(shell pwd)/client:/home/weave/scope/client \ -v $(shell pwd)/$(SCOPE_UI_TOOLCHAIN):/home/weave/scope/client/node_modules \ -w /home/weave/scope/client \ $(SCOPE_UI_BUILD_IMAGE) yarn test