aboutsummaryrefslogtreecommitdiffstats
path: root/telebot/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'telebot/makefile')
-rw-r--r--telebot/makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/telebot/makefile b/telebot/makefile
index 9f91c59..70c353b 100644
--- a/telebot/makefile
+++ b/telebot/makefile
@@ -1,7 +1,7 @@
-DST_DIR?=./protobuf/v1
-SRC_DIR?=./protobuf/v1
-PROTOBUF_SRC_LIST:=$(shell find ./protobuf -name '*.proto' )
-ARTIFACT_LIST:=$(patsubst %.proto, %.pb.go, $(shell find ./protobuf -name '*.proto'))
+DST_DIR?=./v1
+SRC_DIR?=./v1
+PROTOBUF_SRC_LIST:=$(shell find ./v1 -name '*.proto' )
+ARTIFACT_LIST:=$(patsubst %.proto, %.pb.go, $(shell find ./v1 -name '*.proto'))
DEFAULT: default
@@ -9,7 +9,7 @@ default: $(ARTIFACT_LIST)
$(SRC_DIR)/%.pb.go:$(SRC_DIR)/%.proto
protoc --proto_path=$(SRC_DIR) --go_out=$(DST_DIR) --go_opt=paths=source_relative $<
- if [ -d go.mod ];then : else;go mod init github.com/terminaldweller/grpc/telebot/protobuf/v1;fi
+ if [ -d go.mod ];then : else;go mod init github.com/terminaldweller/grpc/telebot/v1;fi
go mod tidy
clean: