From 52148a8ddfa940d162f2a75e4d191790adc087e4 Mon Sep 17 00:00:00 2001 From: wdvxdr Date: Tue, 24 May 2022 11:31:15 +0800 Subject: [PATCH] fix wrong out path --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7031edda..14d0fe4c 100644 --- a/Makefile +++ b/Makefile @@ -43,4 +43,4 @@ install-protoc-plugin: protoc-gen-golite-version go install github.com/RomiChan/protobuf/cmd/protoc-gen-golite@$(PROTOC_GEN_GOLITE_VERSION) proto: install-protoc-plugin - protoc --golite_out=$(PROTO_IMPORT_PATH) --golite_opt=paths=source_relative -I=$(PROTO_IMPORT_PATH) $(PROTO_FILES) + protoc --golite_out=$(PROTO_OUTPUT_PATH) --golite_opt=paths=source_relative -I=$(PROTO_IMPORT_PATH) $(PROTO_FILES)