Skip to content

Commit d3b8be3

Browse files
authored
Add missing ref to out
1 parent 9227003 commit d3b8be3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rules/native_binary.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def _impl_rule(ctx):
2525
out_file = ctx.attr.out
2626
else:
2727
out_file = ctx.name
28-
ctx.actions.declare_file(out_file)
28+
out = ctx.actions.declare_file(out_file)
2929

3030
ctx.actions.symlink(
3131
target_file = ctx.executable.src,

0 commit comments

Comments
 (0)