Skip to content

Commit

Permalink
Update package
Browse files Browse the repository at this point in the history
  • Loading branch information
vmanot committed Nov 23, 2024
1 parent 8b416cd commit 8c212a2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Sources/Merge/Intramodular/Process/SystemShell.swift
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ extension SystemShell {
arguments: arguments,
currentDirectoryURL: currentDirectoryURL?._fromURLToFileURL() ?? self.currentDirectoryURL,
environmentVariables: self.environmentVariables.merging(environmentVariables, uniquingKeysWith: { $1 }),
options: options ?? []
options: options
)

return try await process.run()
Expand Down
4 changes: 2 additions & 2 deletions Sources/Merge/Intramodular/Process/_AsyncProcess.swift
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,7 @@ extension _AsyncProcess {
arguments: [String],
currentDirectoryURL: URL? = nil,
environmentVariables: [String: String] = [:],
options: [_AsyncProcess.Option]
options: [_AsyncProcess.Option]?
) throws {
try self.init(
existingProcess: nil,
Expand All @@ -639,7 +639,7 @@ extension _AsyncProcess {
arguments: [String],
currentDirectoryURL: URL? = nil,
environmentVariables: [String: String] = [:],
options: [_AsyncProcess.Option]
options: [_AsyncProcess.Option]?
) throws {
try self.init(
executableURL: launchPath.map({ URL(fileURLWithPath: $0) }),
Expand Down

0 comments on commit 8c212a2

Please sign in to comment.