From 5828bf005565bbf5d4a7e007c5fd2fdaba174013 Mon Sep 17 00:00:00 2001 From: Orne Brocaar Date: Tue, 19 Nov 2024 15:40:56 +0000 Subject: [PATCH] Fix Makefile. --- interface/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/Makefile b/interface/Makefile index 782cbba..7b51470 100644 --- a/interface/Makefile +++ b/interface/Makefile @@ -1,4 +1,4 @@ -.PHONY: api +.PHONY: api ui PROTOC_PATH := ./ui/node_modules/grpc-tools/bin/protoc PROTOC_ARGS := -I=./api --js_out=import_style=commonjs:./api/grpc-web --grpc-web_out=import_style=commonjs+dts,mode=grpcwebtext:./api/grpc-web/ @@ -10,4 +10,4 @@ api: $(PROTOC_PATH) $(PROTOC_ARGS) api/api.proto ui: - cd ui && yarn add file:./api/grpc-web && yarn install && yarn build + cd ui && yarn add file:../api/grpc-web && yarn install && yarn build