Skip to content

Commit 293b25f

Browse files
authored
Remove -Imodel/proto (#128)
## Which problem is this PR solving? when running `make proto` a warning was logged ``` model/proto: warning: directory does not exist. ``` ## Description of the changes - Remove unused import path Signed-off-by: Yuri Shkuro <[email protected]>
1 parent f5ceac1 commit 293b25f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ proto-prepare:
182182

183183
.PHONY: proto-prototest
184184
proto-prototest:
185-
$(PROTOC) -Imodel/proto --go_out=$(PWD)/model/v1/ model/v1/prototest/model_test.proto
185+
$(PROTOC) --go_out=$(PWD)/model/v1/ model/v1/prototest/model_test.proto
186186

187187
.PHONY: proto-api-v2
188188
proto-api-v2:

0 commit comments

Comments
 (0)