Skip to content

Commit

Permalink
[eas-cli] adhoc opposite name (#358)
Browse files Browse the repository at this point in the history
  • Loading branch information
quinlanj authored Apr 22, 2021
1 parent 0cf8f8c commit ddab65a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export class SetupAdhocProvisioningProfile {
);
if (areBuildCredentialsSetup) {
const buildCredentials = nullthrows(currentBuildCredentials);
if (await this.shouldGenerateNewProfileAsync(ctx, buildCredentials)) {
if (await this.shouldUseExistingProfileAsync(ctx, buildCredentials)) {
return buildCredentials;
}
}
Expand Down Expand Up @@ -150,7 +150,7 @@ export class SetupAdhocProvisioningProfile {
return await validateProvisioningProfileAsync(ctx, this.app, buildCredentials);
}

private async shouldGenerateNewProfileAsync(
private async shouldUseExistingProfileAsync(
ctx: Context,
buildCredentials: IosAppBuildCredentialsFragment
): Promise<boolean> {
Expand Down

0 comments on commit ddab65a

Please sign in to comment.