Created
June 15, 2020 21:55
-
-
Save clevinson/ee1668cc37d0dd46de2aff010067c6ac to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo "Installing protoc-gen-buf-check-breaking..." | |
@curl -sSL \ | |
- "https://github.com/bufbuild/buf/releases/download/v${BUF_VERSION}/protoc-gen-buf-check-breaking-${UNAME_S}-${UNAME_M}" \ | |
- -o "${BIN}/protoc-gen-buf-check-breaking" && \ | |
+ -o "${BIN}/protoc-gen-buf-check-breaking" \ | |
+ "https://github.com/bufbuild/buf/releases/download/v${BUF_VERSION}/protoc-gen-buf-check-breaking-${UNAME_S}-${UNAME_M}" && \ | |
chmod +x "${BIN}/protoc-gen-buf-check-breaking" | |
@echo "Installing buf..." | |
@curl -sSL \ | |
- "https://github.com/bufbuild/buf/releases/download/v${BUF_VERSION}/buf-${UNAME_S}-${UNAME_M}" \ | |
- -o "${BIN}/buf" && \ | |
+ -o "${BIN}/buf" \ | |
+ "https://github.com/bufbuild/buf/releases/download/v${BUF_VERSION}/buf-${UNAME_S}-${UNAME_M}" && \ | |
chmod +x "${BIN}/buf" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment