Skip to content

Commit 8ba0a3f

Browse files
committed
Remove unused arg
1 parent 1b62b60 commit 8ba0a3f

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Sources/ShellOut.swift

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ import Dispatch
3535
process: Process = .init(),
3636
outputHandle: FileHandle? = nil,
3737
errorHandle: FileHandle? = nil,
38-
environment: [String : String]? = nil,
39-
quoteArguments: Bool = true
38+
environment: [String : String]? = nil
4039
) throws -> String {
4140
let command = "cd \(path.escapingSpaces) && \(command) \(arguments.map(\.string).joined(separator: " "))"
4241

@@ -81,8 +80,7 @@ import Dispatch
8180
process: process,
8281
outputHandle: outputHandle,
8382
errorHandle: errorHandle,
84-
environment: environment,
85-
quoteArguments: false
83+
environment: environment
8684
)
8785
}
8886

0 commit comments

Comments
 (0)