Skip to content

Commit 552f200

Browse files
authored
Merge pull request #252 from ahoppen/ahoppen/pass-verbose
Pass `--verbose` to `swift build`
2 parents 3145839 + 91fd4bd commit 552f200

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

build-script-helper.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,9 @@ def invoke_swift_single_product(package_dir, swift_exec, action, product, build_
186186
if multiroot_data_file:
187187
args.extend(['--multiroot-data-file', multiroot_data_file])
188188

189+
if verbose:
190+
args.append('--verbose')
191+
189192
if action == 'test':
190193
args.extend(['--test-product', product, '--disable-testable-imports'])
191194
else:

0 commit comments

Comments
 (0)