Skip to content

Commit 24bf776

Browse files
committed
Remove --disable-sandbox
This flag wasn’t used anywhere.
1 parent 72acb5d commit 24bf776

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

SwiftSyntaxDevUtils/Sources/swift-syntax-dev-utils/common/BuildArguments.swift

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,6 @@ struct BuildArguments: ParsableArguments {
3939
)
4040
var multirootDataFile: URL?
4141

42-
@Flag(help: "Disable sandboxes when building with SwiftPM")
43-
var disableSandbox: Bool = false
44-
4542
@Flag(help: "Build in release mode.")
4643
var release: Bool = false
4744

SwiftSyntaxDevUtils/Sources/swift-syntax-dev-utils/common/BuildCommand.swift

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,6 @@ extension BuildCommand {
5959
args += ["--multiroot-data-file", multirootDataFile]
6060
}
6161

62-
if arguments.disableSandbox {
63-
args += ["--disable-sandbox"]
64-
}
65-
6662
if arguments.verbose {
6763
args += ["--verbose"]
6864
}

0 commit comments

Comments
 (0)