Skip to content

Commit 4be12e6

Browse files
committed
Properly report the runProgramOutput() command line
1 parent 53335e1 commit 4be12e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tools/build-swiftly-release/BuildSwiftlyRelease.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public func runProgram(_ args: String..., quiet: Bool = false) throws {
7878
}
7979

8080
public func runProgramOutput(_ program: String, _ args: String...) async throws -> String? {
81-
print("\(args.joined(separator: " "))")
81+
print("\(program) \(args.joined(separator: " "))")
8282

8383
let process = Process()
8484
process.executableURL = URL(fileURLWithPath: "/usr/bin/env")

0 commit comments

Comments
 (0)