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 998c811 commit 7819814Copy full SHA for 7819814
lib/services/ios-project-service.ts
@@ -1131,6 +1131,9 @@ We will now place an empty obsolete compatability white screen LauncScreen.xib f
1131
line = line.replace(/\/(\/)[^\n]*$/, "");
1132
if (line.indexOf("DEVELOPMENT_TEAM") >= 0) {
1133
teamId = line.split("=")[1].trim();
1134
+ if (teamId[teamId.length-1] === ';') {
1135
+ teamId = teamId.slice(0, -1);
1136
+ }
1137
}
1138
});
1139
if (teamId) {
0 commit comments