Skip to content

Commit 2c034c2

Browse files
committed
Don't print new line after the driver version
This allows us to see the compiler version with the driver version in the same line.
1 parent 023069c commit 2c034c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/SwiftDriver/Driver/Driver.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -845,7 +845,7 @@ extension Driver {
845845
// Print the driver source version first before we print the compiler
846846
// versions.
847847
if job.kind == .versionRequest && !Driver.driverSourceVersion.isEmpty {
848-
stderrStream <<< "swift-driver version: " <<< Driver.driverSourceVersion <<< "\n"
848+
stderrStream <<< "swift-driver version: " <<< Driver.driverSourceVersion <<< " "
849849
stderrStream.flush()
850850
}
851851
// Require in-place execution for all single job plans.

0 commit comments

Comments
 (0)