File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Sources/SWBTaskConstruction/TaskProducers/BuildPhaseTaskProducers Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -614,7 +614,7 @@ package class FilesBasedBuildPhaseTaskProducerBase: PhasedTaskProducer {
614
614
// Reorder resolvedBuildFiles so that file types which compile to Swift appear first in the list and so are processed first.
615
615
// This is needed because generated sources aren't added to the the main source code list.
616
616
// rdar://102834701 (File grouping for 'collection groups' is sensitive to ordering of build phase members)
617
- let compileToSwiftFileTypes = await context. workspaceContext. core. pluginManager. fileTypesProducingGeneratedSources ( )
617
+ let compileToSwiftFileTypes = context. workspaceContext. core. pluginManager. fileTypesProducingGeneratedSources ( )
618
618
var compileToSwiftFiles = [ ResolvedBuildFile] ( )
619
619
var otherBuildFiles = [ ResolvedBuildFile] ( )
620
620
for resolvedBuildFile in resolvedBuildFiles {
@@ -792,7 +792,7 @@ package class FilesBasedBuildPhaseTaskProducerBase: PhasedTaskProducer {
792
792
return [ ]
793
793
}
794
794
795
- let fileIdentifiersGeneratingSources = await context. workspaceContext. core. pluginManager. fileTypesProducingGeneratedSources ( )
795
+ let fileIdentifiersGeneratingSources = context. workspaceContext. core. pluginManager. fileTypesProducingGeneratedSources ( )
796
796
guard !fileIdentifiersGeneratingSources. isEmpty else {
797
797
return [ ]
798
798
}
You can’t perform that action at this time.
0 commit comments