Skip to content

Commit 08c93bf

Browse files
author
Philippe Elsass
committed
Missing tvOS output path
1 parent bcc9958 commit 08c93bf

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

libxcode/src/main/groovy/org/openbakery/xcode/XcodebuildParameters.groovy

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,12 @@ class XcodebuildParameters {
147147
} else {
148148
return new File(getSymRoot(), "${configuration}-iphoneos")
149149
}
150+
} else if (type == Type.tvOS) {
151+
if (simulator) {
152+
return new File(getSymRoot(), "${configuration}-appletvsimulator")
153+
} else {
154+
return new File(getSymRoot(), "${configuration}-appletvos")
155+
}
150156
}
151157
return new File(getSymRoot(), configuration)
152158
}

0 commit comments

Comments
 (0)