Skip to content

Commit

Permalink
Replace += with .append in build_defs.bzl
Browse files Browse the repository at this point in the history
As the lint tool suggested so.

#codehealth

PiperOrigin-RevId: 717763403
  • Loading branch information
hiroyuki-komatsu committed Jan 21, 2025
1 parent 6e76b54 commit 9a1449b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/build_defs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def _win_executable_transition_impl(
attr):
features = ["generate_pdb_file"]
if attr.static_crt:
features += ["static_link_msvcrt"]
features.append("static_link_msvcrt")
return {
"//command_line_option:features": features,
"//command_line_option:platforms": [attr.platform],
Expand Down

0 comments on commit 9a1449b

Please sign in to comment.