Skip to content

Commit 8367cd4

Browse files
committed
Style fix
1 parent ad26f7c commit 8367cd4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

SConstruct

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ elif internal_sdk == SDK.NATIVE:
124124
# Separate arch dirs to avoid crashpad handler filename conflicts.
125125
out_dir += "/" + arch
126126
out_dir = Dir(out_dir)
127-
env['out_dir'] = out_dir
127+
env["out_dir"] = out_dir
128128

129129

130130
# *** Build sentry-native.

site_scons/site_tools/separate_debug_symbols.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99

1010
def separate_debug_symbols(target, source, env):
11-
platform = env['platform']
12-
out_dir = env['out_dir']
11+
platform = env["platform"]
12+
out_dir = env["out_dir"]
1313

1414
target_path = str(target[0])
1515
source_path = str(source[0])

0 commit comments

Comments
 (0)