Skip to content

Commit a737fc9

Browse files
shahmishalbripeticca
authored andcommitted
Remove the forward slash '/' in the output (swiftlang#8280)
Not all platforms use `/` for example Windows.
1 parent 5a0598f commit a737fc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/Workspace/InitPackage.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -567,7 +567,7 @@ public final class InitPackage {
567567
guard self.fileSystem.exists(sources) == false else {
568568
return
569569
}
570-
progressReporter?("Creating \(sources.relative(to: destinationPath))/")
570+
progressReporter?("Creating \(sources.relative(to: destinationPath))")
571571
try makeDirectories(sources)
572572

573573
let moduleDir: AbsolutePath

0 commit comments

Comments
 (0)