We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7628f85 + 9a5e127 commit 4a4b469Copy full SHA for 4a4b469
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