Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRealAgentK committed Jan 26, 2025
1 parent 7e5f1f9 commit 9977406
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
3 changes: 2 additions & 1 deletion lib/proguard/proguard.dart
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ class Proguard {
exit(2);
}

final externalAccessToken = command.option('external-access-token') as String;
final externalAccessToken =
command.option('external-access-token') as String;
final path = command.option('path') as String;
final version = command.option('version') as String;
final overwrite = command.wasParsed('overwrite');
Expand Down
4 changes: 2 additions & 2 deletions lib/proguard/proguard_api.dart
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ Future<bool> uploadProguardMapping({
final responseBody = await response.stream.bytesToString();

if (response.statusCode == 200) {
print('Success uploading Proguard/R8 mapping file: ${response.statusCode}');
print(
'Result: ${responseBody}');
'Success uploading Proguard/R8 mapping file: ${response.statusCode}');
print('Result: ${responseBody}');
return true;
}

Expand Down
3 changes: 1 addition & 2 deletions lib/proguard/proguard_command.dart
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ ArgParser buildParserProguard() {
..addOption(
'version',
mandatory: true,
help:
'Version of the app this mapping file is for',
help: 'Version of the app this mapping file is for',
)
..addFlag(
'overwrite',
Expand Down

0 comments on commit 9977406

Please sign in to comment.