Skip to content

Commit 704fd5f

Browse files
author
Zachary 'Clack' Cole
authored
Merge pull request swiftlang#408 from apple/add-xcodebuild-flag
Add flag to xcodebuild to disable manifest sandbox
2 parents 846512f + 1964a8e commit 704fd5f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

project_future.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,8 @@ def dispatch(root_path, repo, action, swiftc, swift_version,
317317
action['action']
318318
)
319319

320-
initial_xcodebuild_flags = ['SWIFT_EXEC=%s' % swiftc]
320+
initial_xcodebuild_flags = ['SWIFT_EXEC=%s' % swiftc,
321+
'-IDEPackageSupportDisableManifestSandbox=YES']
321322

322323
if build_config == 'debug':
323324
initial_xcodebuild_flags += ['-configuration', 'Debug']

0 commit comments

Comments
 (0)