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.
_zipmerge
1 parent 5672ddf commit e8061ecCopy full SHA for e8061ec
misc/bazel/pkg.bzl
@@ -231,12 +231,12 @@ def _zipmerge_impl(ctx):
231
]
232
zips.append(zip)
233
else:
234
- zips = zip_target.files.to_list()
235
- for zip in zips:
+ zip_files = zip_target.files.to_list()
+ for zip in zip_files:
236
if zip.extension != "zip":
237
fail("%s file found while expecting a .zip file " % zip.short_path)
238
args.append("--prefix=%s" % ctx.attr.prefix)
239
- args += [z.path for z in zips]
+ args += [z.path for z in zip_files]
240
transitive_zips.append(zip_target.files)
241
ctx.actions.run(
242
outputs = [output],
0 commit comments