We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 130e6d5 commit 1e1019dCopy full SHA for 1e1019d
1 file changed
lib/project.service.ts
@@ -193,7 +193,8 @@ export namespace ProjectService {
193
// TODO: change this after it expires in August 2019
194
options += ' --provision /tns-official/CodeSign/ios/Icenium_QA_Development.mobileprovision --certificate /tns-official/CodeSign/ios/iPhone\\ Developer\\ Dragon\\ Telerikov\\ \\(R58QAA9NR8\\).p12 --certificatePassword 1';
195
} else {
196
- options += ' --release --for-device --provision $PROVISIONING';
+ const profile = process.env.PROVISIONING;
197
+ options += ` --release --for-device --provision ${profile}`;
198
}
199
200
const command = cloudEnabled ? `tns cloud build ${platform} --accountId 1 ${options}` : `tns build ${platform} ${options}`;
0 commit comments