From 045972abe1096b95aa6cbd3247c45940e4b5e38e Mon Sep 17 00:00:00 2001 From: Doug Date: Thu, 30 Mar 2023 18:17:32 +0100 Subject: [PATCH] Fix use of zsh in our tools. --- Tools/Sources/Utilities.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()