iOS 빌드시 PENDING_DEVELOPER_RELEASE 값에 대한 대응
This commit is contained in:
parent
3fffaa576d
commit
4a76add717
1 changed files with 4 additions and 1 deletions
|
|
@ -65,13 +65,16 @@ class BuildiOS extends Command {
|
|||
targetVersion = item['version'];
|
||||
break;
|
||||
}
|
||||
if (item['state'] == 'PENDING_DEVELOPER_RELEASE') {
|
||||
targetVersion = incrementVersion(item['version']);
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (targetVersion == null) {
|
||||
throw Exception(
|
||||
'Can not find target version when state = PREPARE_FOR_SUBMISSION.');
|
||||
'Can not find target version when state = PREPARE_FOR_SUBMISSION, PENDING_DEVELOPER_RELEASE');
|
||||
}
|
||||
version = targetVersion;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue