Skip to content

Commit 1c7ddd7

Browse files
committed
fix: xcode10 builds
1 parent 74a41d1 commit 1c7ddd7

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

core/tns/tns.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -509,12 +509,14 @@ def build_ios(attributes={}, assert_success=True, tns_path=None, log_trace=False
509509
if Xcode.get_version() < 10:
510510
assert "CONFIGURATION Release" in output
511511
else:
512-
assert '"-configuration" "Release"' in output
512+
if log_trace:
513+
assert '"-configuration" "Release"' in output
513514
else:
514515
if Xcode.get_version() < 10:
515516
assert "CONFIGURATION Debug" in output
516517
else:
517-
assert '"-configuration" "Debug"' in output
518+
if log_trace:
519+
assert '"-configuration" "Debug"' in output
518520

519521
# Verify simulator/device builds
520522
device_folder = app_name + "/platforms/ios/build/device/"

0 commit comments

Comments
 (0)