We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d1f85b commit ad22dfcCopy full SHA for ad22dfc
Makefile
@@ -64,6 +64,7 @@ modtidy:
64
65
.PHONY: proto
66
proto:
67
+ @command -v buf >/dev/null 2>&1 || { echo "buf is not installed. Install it from https://docs.buf.build/installation"; exit 1; }
68
@if [ ! -f .dapr-proto-ref ]; then echo "No .dapr-proto-ref file found. Run 'make proto-update' first."; exit 1; fi
69
@find ./internal/proto -type f -name '*.go' -delete
70
@COMMIT=$$(cat .dapr-proto-ref | tr -d '\n'); \
0 commit comments