Skip to content

Commit cf36366

Browse files
authored
Merge pull request #377 from nkcsgexi/no-new-line
Don't print new line after the driver version
2 parents a1d1691 + 2c034c2 commit cf36366

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)