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 {
614614 // Reorder resolvedBuildFiles so that file types which compile to Swift appear first in the list and so are processed first.
615615 // This is needed because generated sources aren't added to the the main source code list.
616616 // 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 ( )
618618 var compileToSwiftFiles = [ ResolvedBuildFile] ( )
619619 var otherBuildFiles = [ ResolvedBuildFile] ( )
620620 for resolvedBuildFile in resolvedBuildFiles {
@@ -792,7 +792,7 @@ package class FilesBasedBuildPhaseTaskProducerBase: PhasedTaskProducer {
792792 return [ ]
793793 }
794794
795- let fileIdentifiersGeneratingSources = await context. workspaceContext. core. pluginManager. fileTypesProducingGeneratedSources ( )
795+ let fileIdentifiersGeneratingSources = context. workspaceContext. core. pluginManager. fileTypesProducingGeneratedSources ( )
796796 guard !fileIdentifiersGeneratingSources. isEmpty else {
797797 return [ ]
798798 }
You can’t perform that action at this time.
0 commit comments