Skip to content

Commit cdba77e

Browse files
authored
Reduce the scope of targets to search for the .app target. (#27)
1 parent fbb126d commit cdba77e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ func exportArtifacts(proj xcodeproj.XcodeProj, scheme string, schemeBuildDir str
518518
return nil, fmt.Errorf("failed to fetch project's targets, error: %s", err)
519519
}
520520

521-
targets := append([]xcodeproj.Target{mainTarget}, mainTarget.DependentTargets()...)
521+
targets := append([]xcodeproj.Target{mainTarget}, mainTarget.DependentExecutableProductTargets(false)...)
522522

523523
for _, target := range targets {
524524
log.Donef(target.Name + "...")

0 commit comments

Comments
 (0)