add the unzipped prefix as well

This commit is contained in:
Brian Hicks 2023-05-02 10:31:08 -05:00
parent 67dba83688
commit 3269660a53
No known key found for this signature in database
GPG Key ID: C4F324B9CAAB0D50

View File

@ -16,7 +16,10 @@ _NODE_SHA256 = select({
_NODE_PREFIX = select({
"config//os:linux": "node-v20.0.0-linux-x64",
"config//os:macos": "node-v20.0.0-darwin-arm64",
"config//os:macos": select({
"config//cpu:arm64": "node-v20.0.0-darwin-arm64",
"config//cpu:x86_64": "node-v20.0.0-darwin-x64",
}),
})
http_archive(