Skip to content

Commit 77819b7

Browse files
committed
Remove --disable-sandbox
This flag wasn’t used anywhere.
1 parent 672dbad commit 77819b7

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
@@ -62,10 +62,6 @@ extension BuildCommand {
6262
args += ["--multiroot-data-file", multirootDataFile]
6363
}
6464

65-
if arguments.disableSandbox {
66-
args += ["--disable-sandbox"]
67-
}
68-
6965
if arguments.verbose {
7066
args += ["--verbose"]
7167
}

0 commit comments

Comments
 (0)