We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b62b60 commit 8ba0a3fCopy full SHA for 8ba0a3f
Sources/ShellOut.swift
@@ -35,8 +35,7 @@ import Dispatch
35
process: Process = .init(),
36
outputHandle: FileHandle? = nil,
37
errorHandle: FileHandle? = nil,
38
- environment: [String : String]? = nil,
39
- quoteArguments: Bool = true
+ environment: [String : String]? = nil
40
) throws -> String {
41
let command = "cd \(path.escapingSpaces) && \(command) \(arguments.map(\.string).joined(separator: " "))"
42
@@ -81,8 +80,7 @@ import Dispatch
81
80
process: process,
82
outputHandle: outputHandle,
83
errorHandle: errorHandle,
84
- environment: environment,
85
- quoteArguments: false
+ environment: environment
86
)
87
}
88
0 commit comments