Fix package naming rule

Remove quotes around CPU since we want the variable evaluated instead of the string. This will allow the win64 build to get the correct name.
pull/9537/head
deannagarcia 3 years ago committed by GitHub
parent a112c4ab96
commit a5168a6e96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      protobuf_release.bzl

@ -27,7 +27,7 @@ def _package_naming_impl(ctx):
elif "linux" in system_name:
values["platform"] = "linux-" + cpu
elif "mingw" in system_name:
if "cpu" == "x86_64":
if cpu == "x86_64":
values["platform"] = "win64"
else:
values["platform"] = "win32"

Loading…
Cancel
Save