Skip to content

Commit c3bb2e5

Browse files
committed
fix
1 parent 81e98d3 commit c3bb2e5

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

Sources/PackLib/Packer.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ public struct Packer: Sendable {
7171
)
7272
try await Subprocess.run(
7373
buildConfig,
74-
output: .standardError
74+
output: .standardError,
75+
error: .standardError,
7576
)
7677
.checkSuccess()
7778
}

Sources/XToolSupport/SDKCommand.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ struct DarwinSDK {
157157
arguments: ["sdk", "install", url.path],
158158
output: .discarded
159159
)
160-
.checkSuccess()f6b84ce (wip: use swift-subprocess)
160+
.checkSuccess()
161161
}
162162

163163
private static func addHostClangResourceDir(to sdk: URL) async throws {

0 commit comments

Comments
 (0)