Skip to content

Commit

Permalink
Remove -Imodel/proto (#128)
Browse files Browse the repository at this point in the history
## 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]>
  • Loading branch information
yurishkuro authored Jan 25, 2025
1 parent f5ceac1 commit 293b25f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ proto-prepare:

.PHONY: proto-prototest
proto-prototest:
$(PROTOC) -Imodel/proto --go_out=$(PWD)/model/v1/ model/v1/prototest/model_test.proto
$(PROTOC) --go_out=$(PWD)/model/v1/ model/v1/prototest/model_test.proto

.PHONY: proto-api-v2
proto-api-v2:
Expand Down

0 comments on commit 293b25f

Please sign in to comment.