Skip to content

Commit

Permalink
fix: type
Browse files Browse the repository at this point in the history
  • Loading branch information
yuyawk committed Dec 21, 2024
1 parent 0baf8dd commit 7cf76e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lang/cc/build_error.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -678,10 +678,10 @@ def _create_test_impl(ctx):
executable = ctx.actions.declare_file(ctx.label.name + "/" + dummy_test.basename)
ctx.actions.run_shell(
outputs = [executable],
inputs = cc_build_error_info.markers + [ctx.attr._dummy_test],
inputs = cc_build_error_info.markers + [dummy_test],
command = 'cp "$1" "$2"',
arguments = [
ctx.attr._dummy_test.path,
dummy_test.path,
executable.path,
],
)
Expand Down

0 comments on commit 7cf76e7

Please sign in to comment.