You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Sources/CoreCommands/SwiftCommandState.swift
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1074,14 +1074,14 @@ public final class SwiftCommandState {
1074
1074
ifself.options.locations.ignoreLock {
1075
1075
self.outputStream
1076
1076
.write(
1077
-
"Another instance of SwiftPM (pid \(pidInfo)) is already running using '\(self.scratchDirectory)', but this will be ignored since `--ignore-lock` has been passed"
1077
+
"Another instance of SwiftPM \(pidInfo) is already running using '\(self.scratchDirectory)', but this will be ignored since `--ignore-lock` has been passed"
1078
1078
.utf8
1079
1079
)
1080
1080
self.outputStream.flush()
1081
1081
}else{
1082
1082
self.outputStream
1083
1083
.write(
1084
-
"Another instance of SwiftPM (pid \(pidInfo)) is already running using '\(self.scratchDirectory)', waiting until that process has finished execution..."
1084
+
"Another instance of SwiftPM \(pidInfo) is already running using '\(self.scratchDirectory)', waiting until that process has finished execution..."
0 commit comments