File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -841,7 +841,7 @@ public final class ManifestLoader: ManifestLoaderProtocol {
841
841
cmd += [ " -o " , compiledManifestFile. pathString]
842
842
843
843
// Compile the manifest.
844
- Process . popen ( arguments: cmd, environment: toolchain. swiftCompilerEnvironment) { result in
844
+ Process . popen ( arguments: cmd, environment: toolchain. swiftCompilerEnvironment, queue : delegateQueue ) { result in
845
845
var cleanupIfError = DelayableAction ( target: tmpDir, action: cleanupTmpDir)
846
846
defer { cleanupIfError. perform ( ) }
847
847
@@ -899,7 +899,7 @@ public final class ManifestLoader: ManifestLoaderProtocol {
899
899
#endif
900
900
901
901
let cleanupAfterRunning = cleanupIfError. delay ( )
902
- Process . popen ( arguments: cmd, environment: environment) { result in
902
+ Process . popen ( arguments: cmd, environment: environment, queue : delegateQueue ) { result in
903
903
defer { cleanupAfterRunning. perform ( ) }
904
904
fclose ( jsonOutputFileDesc)
905
905
You can’t perform that action at this time.
0 commit comments