Skip to content

Commit c0422ec

Browse files
authored
fix(container/image.bzl): add missing mnemonics to actions (#2284)
1 parent 5563e69 commit c0422ec

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

container/image.bzl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -543,11 +543,13 @@ def _impl(
543543
outputs = [output_config],
544544
inputs = [config_file],
545545
command = "cp %s %s" % (config_file.path, output_config.path),
546+
mnemonic = "CopyConfig",
546547
)
547548
ctx.actions.run_shell(
548549
outputs = [output_config_digest],
549550
inputs = [config_digest],
550551
command = "cp %s %s" % (config_digest.path, output_config_digest.path),
552+
mnemonic = "CopyConfigDigest",
551553
)
552554

553555
runfiles = ctx.runfiles(

0 commit comments

Comments
 (0)