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 f1685ce commit 42b6ff3Copy full SHA for 42b6ff3
go/private/actions/stdlib.bzl
@@ -56,7 +56,7 @@ def _should_use_sdk_stdlib(go):
56
if version and version[0] <= 1 and version[1] <= 19 and go.sdk.experiments:
57
# The precompiled stdlib shipped with 1.19 or below doesn't have experiments
58
return False
59
- return (go.sdk.libs.to_list() and # go.sdk.libs is non-empty if sdk ships with precompiled .a files
+ return (go.sdk.libs and # go.sdk.libs is non-empty if sdk ships with precompiled .a files
60
go.mode.goos == go.sdk.goos and
61
go.mode.goarch == go.sdk.goarch and
62
not go.mode.race and # TODO(jayconrod): use precompiled race
0 commit comments