Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into tee
Browse files Browse the repository at this point in the history
  • Loading branch information
omochi committed May 20, 2024
2 parents cbc494c + e030a49 commit 97d12ea
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Sources/carton/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,13 @@ import CartonHelpers
import Foundation
import SwiftToolchain

struct CartonCommandError: Error & CustomStringConvertible {
init(_ description: String) {
self.description = description
}
var description: String
}

extension Foundation.Process {
internal static func checkRun(
_ executableURL: URL, arguments: [String], forwardExit: Bool = false
Expand Down

0 comments on commit 97d12ea

Please sign in to comment.