File tree Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change
1
+ # v2.0.6 (Dec 14, 2017)
2
+
3
+ - Fixed bug where extract teams from provisioning profiles would fail if any provisioning profiles
4
+ didn't have any associated teams [ DAEMON-209] .
5
+
1
6
# v2.0.5 (Dec 12, 2017)
2
7
3
8
- Updated to
[email protected] which added support for Node.js 9.
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " ioslib" ,
3
- "version" : " 2.0.5 " ,
3
+ "version" : " 2.0.6 " ,
4
4
"publishConfig" : {
5
5
"tag" : " next"
6
6
},
Original file line number Diff line number Diff line change @@ -31,9 +31,11 @@ export function buildTeamsFromProvisioningProfiles(profiles) {
31
31
for ( const type of Object . keys ( profiles ) ) {
32
32
if ( Array . isArray ( profiles [ type ] ) ) {
33
33
for ( const profile of profiles [ type ] ) {
34
- for ( const id of profile . teamIds ) {
35
- if ( id ) {
36
- teams [ id ] = id ;
34
+ if ( Array . isArray ( profile . teamIds ) ) {
35
+ for ( const id of profile . teamIds ) {
36
+ if ( id ) {
37
+ teams [ id ] = id ;
38
+ }
37
39
}
38
40
}
39
41
if ( profile . teamId ) {
You can’t perform that action at this time.
0 commit comments