Skip to content

Commit 6cf6cf9

Browse files
stepanchegfacebook-github-bot
authored andcommitted
cmd_args .hidden() -> hidden= in defs.bzl
Reviewed By: blackm00n Differential Revision: D58044593 fbshipit-source-id: c378e62ac400e635b5bcc4d04ddde7ebec091284
1 parent 866aee7 commit 6cf6cf9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

defs.bzl

+4-2
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,15 @@ def _symlinked_buck2_and_tpx_impl(ctx: AnalysisContext) -> list[Provider]:
3333
"/c",
3434
cmd_args(out, format = "set BUCK2_BINARY_DIR_RELATIVE_TO={}&&").relative_to(buck2, parent = 1),
3535
out.project(buck2_binary),
36-
).hidden(out)
36+
hidden = out,
37+
)
3738
else:
3839
cmd = cmd_args(
3940
"/usr/bin/env",
4041
cmd_args(out, format = "BUCK2_BINARY_DIR_RELATIVE_TO={}").relative_to(buck2, parent = 1),
4142
out.project(buck2_binary),
42-
).hidden(out)
43+
hidden = out,
44+
)
4345

4446
return [DefaultInfo(out), RunInfo(cmd)]
4547

0 commit comments

Comments
 (0)