Skip to content

Commit b44c9a3

Browse files
n2h9augusto2112
authored andcommitted
[lldb] [test-suite] fix typo in variable in darwin builder (llvm#169254)
While taking a look at the code of lldb test-suite packages, I have noticed that in `get_triple_str` in `darwin.py` env is added inside a `components` list, which is probably supposed to be `component` (defined on the line 61). Signed-off-by: Nikita B <[email protected]>
1 parent 91496bb commit b44c9a3

File tree

1 file changed

+1
-1
lines changed
  • lldb/packages/Python/lldbsuite/test/builders

1 file changed

+1
-1
lines changed

lldb/packages/Python/lldbsuite/test/builders/darwin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def get_triple_str(arch, vendor, os, version, env):
6060

6161
component = [arch, vendor, os + version]
6262
if env:
63-
components.append(env)
63+
component.append(env)
6464
return "-".join(component)
6565

6666

0 commit comments

Comments
 (0)