Skip to content

Commit 57a8f70

Browse files
authored
Remove the forward slash '/' in the output (#8280)
Not all platforms use `/` for example Windows.
1 parent a0aae3a commit 57a8f70

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)