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.
extend(...)
+= list(...)
1 parent e8061ec commit 336ec08Copy full SHA for 336ec08
misc/bazel/pkg.bzl
@@ -190,7 +190,7 @@ def _imported_zips_manifest_impl(ctx):
190
for zip_info in ctx.attr.srcs:
191
zip_info = zip_info[_ZipInfo]
192
manifest += ["%s:%s" % (p, z.short_path) for z, p in zip_info.zips_to_prefixes.items()]
193
- files += list(zip_info.zips_to_prefixes)
+ files.extend(zip_info.zips_to_prefixes)
194
195
output = ctx.actions.declare_file(ctx.label.name + ".params")
196
ctx.actions.write(
0 commit comments