Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion buf/internal/toolchain.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def _buf_download_releases_impl(ctx):
version = json.decode(version_data)["name"]

os, cpu = _detect_host_platform(ctx)
if os not in ["linux", "darwin", "windows"] or cpu not in ["arm64", "amd64"]:
if os not in ["linux", "darwin", "windows"] or cpu not in ["arm64", "amd64", "ppc64le"]:
fail("Unsupported operating system or cpu architecture ")
if os == "linux" and cpu == "arm64":
cpu = "aarch64"
Expand Down