Skip to content

Commit 4070c1f

Browse files
committed
Add identifying mnemonic to bazel action
... it is good practice. Signed-off-by: Henner Zeller <h.zeller@acm.org>
1 parent c8e0e89 commit 4070c1f

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

bazel/extract_zip.bzl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ def _extract_zip_impl(ctx):
1717
outputs = [out_dir],
1818
executable = ctx.executable._zipper,
1919
arguments = ["x", ctx.file.src.path, "-d", out_dir.path],
20+
mnemonic = "ZipExtract",
2021
)
2122
return [DefaultInfo(
2223
files = depset([out_dir]),

0 commit comments

Comments
 (0)