Skip to content
This repository has been archived by the owner on Jun 23, 2023. It is now read-only.

Commit

Permalink
Fixed bug setting the incorrect type of iOS build
Browse files Browse the repository at this point in the history
  • Loading branch information
Bradley Clayton committed Jun 14, 2018
1 parent 6c4f1a2 commit 6d1dc22
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ private void readProvisioningInputStream(InputStream processInputSteam, BuildEnv
NSDictionary entitlementsDict = (NSDictionary) rootDict.objectForKey("Entitlements");
String fullBundleId = entitlementsDict.objectForKey("application-identifier").toString();
String bundleId = removeTeamFromBundleId(fullBundleId, devTeam);
NSObject provisionedDevices = entitlementsDict.objectForKey("ProvisionedDevices");
NSObject provisionedDevices = rootDict.objectForKey("ProvisionedDevices");

buildEnvironment.addProperty(BUILD_PROP_APP_NAME, appName);
buildEnvironment.addProperty(BUILD_PROP_APP_ID_NAME, appIDName);
Expand Down

0 comments on commit 6d1dc22

Please sign in to comment.