From 0b623fdb1d8e9142cbd34c87dfe6be5905d565f1 Mon Sep 17 00:00:00 2001 From: kv Date: Tue, 10 Nov 2020 17:17:13 +0800 Subject: [PATCH] fix: makefile build error (#767) --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4b546a0ee8..41a4621ef8 100644 --- a/Makefile +++ b/Makefile @@ -33,8 +33,7 @@ help: ### build: Build Apache APISIX Dashboard, it contains web and manager-api .PHONY: build build: web-default api-default - api/build.sh && cd /web && yarn install && yarn build - mkdir -p ./output/logs + api/build.sh && cd ./web && yarn install && yarn build && mkdir -p ../output/logs .PHONY: web-default