diff --git a/Tools/Sources/Utilities.swift b/Tools/Sources/Utilities.swift index ead877a48..2f44241b8 100644 --- a/Tools/Sources/Utilities.swift +++ b/Tools/Sources/Utilities.swift @@ -20,7 +20,7 @@ enum Utilities { static func zsh(_ command: String, workingDirectoryURL: URL = projectDirectoryURL) throws -> String? { let process = Process() process.executableURL = URL(filePath: "/bin/zsh") - process.arguments = ["-c", command] + process.arguments = ["-cu", command] process.currentDirectoryURL = workingDirectoryURL let outputPipe = Pipe()