Skip to content

Commit

Permalink
Format files
Browse files Browse the repository at this point in the history
  • Loading branch information
nilsreichardt committed Mar 2, 2025
1 parent 910b862 commit e96d2b0
Showing 1 changed file with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ class AppleSigningConfig {

final certificatePrivateKey =
argResults[certificateKeyOptionName] as String? ??
Platform.environment['CERTIFICATE_PRIVATE_KEY'];
Platform.environment['CERTIFICATE_PRIVATE_KEY'];

if (certificatePrivateKey == null) {
throw Exception(
Expand Down Expand Up @@ -334,11 +334,14 @@ class AppStoreConnectConfig {
ArgResults argResults,
Map<String, String> environment,
) {
final issuerId = argResults[issuerIdOptionName] as String? ??
final issuerId =
argResults[issuerIdOptionName] as String? ??
Platform.environment['APP_STORE_CONNECT_ISSUER_ID'];
final keyIdentifier = argResults[keyIdOptionName] as String? ??
final keyIdentifier =
argResults[keyIdOptionName] as String? ??
Platform.environment['APP_STORE_CONNECT_KEY_IDENTIFIER'];
final privateKey = argResults[privateKeyOptionName] as String? ??
final privateKey =
argResults[privateKeyOptionName] as String? ??
Platform.environment['APP_STORE_CONNECT_PRIVATE_KEY'];

if (issuerId == null) {
Expand Down

0 comments on commit e96d2b0

Please sign in to comment.