From ab24cd7559922036ffe522344b6866b9539df718 Mon Sep 17 00:00:00 2001 From: terminaldweller Date: Fri, 12 Nov 2021 16:10:09 +0330 Subject: updates and fixes --- telebot/makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'telebot/makefile') 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: -- cgit v1.2.3