Skip to content

Commit 9977406

Browse files
committed
Formatting
1 parent 7e5f1f9 commit 9977406

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

lib/proguard/proguard.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ class Proguard {
3737
exit(2);
3838
}
3939

40-
final externalAccessToken = command.option('external-access-token') as String;
40+
final externalAccessToken =
41+
command.option('external-access-token') as String;
4142
final path = command.option('path') as String;
4243
final version = command.option('version') as String;
4344
final overwrite = command.wasParsed('overwrite');

lib/proguard/proguard_api.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ Future<bool> uploadProguardMapping({
4242
final responseBody = await response.stream.bytesToString();
4343

4444
if (response.statusCode == 200) {
45-
print('Success uploading Proguard/R8 mapping file: ${response.statusCode}');
4645
print(
47-
'Result: ${responseBody}');
46+
'Success uploading Proguard/R8 mapping file: ${response.statusCode}');
47+
print('Result: ${responseBody}');
4848
return true;
4949
}
5050

lib/proguard/proguard_command.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@ ArgParser buildParserProguard() {
3838
..addOption(
3939
'version',
4040
mandatory: true,
41-
help:
42-
'Version of the app this mapping file is for',
41+
help: 'Version of the app this mapping file is for',
4342
)
4443
..addFlag(
4544
'overwrite',

0 commit comments

Comments
 (0)