We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91f7584 commit 9a5e127Copy full SHA for 9a5e127
1 file changed
Xcodes/Backend/Environment.swift
@@ -116,7 +116,8 @@ public struct Shell {
116
return AsyncThrowingStream<Progress, Error> { continuation in
117
118
Task {
119
- var progress = Progress()
+ // Assume progress will not have data races, so we manually opt-out isolation checks.
120
+ nonisolated(unsafe) var progress = Progress()
121
progress.kind = .file
122
progress.fileOperationKind = .downloading
123
0 commit comments