Skip to content

Commit

Permalink
[lldb] Fix indentation in builders/darwin.py
Browse files Browse the repository at this point in the history
  • Loading branch information
JDevlieghere committed Nov 30, 2021
1 parent 0a302f6 commit 4fa9e43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lldb/packages/Python/lldbsuite/test/builders/darwin.py
Expand Up @@ -92,9 +92,9 @@ def getExtraMakeArgs(self):
builder_dir = os.path.dirname(os.path.abspath(__file__))
test_dir = os.path.dirname(builder_dir)
if env == "simulator":
entitlements_file = 'entitlements-simulator.plist'
entitlements_file = 'entitlements-simulator.plist'
else:
entitlements_file = 'entitlements.plist'
entitlements_file = 'entitlements.plist'
entitlements = os.path.join(test_dir, 'make', entitlements_file)
args['CODESIGN'] = 'codesign --entitlements {}'.format(
entitlements)
Expand Down

0 comments on commit 4fa9e43

Please sign in to comment.