File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff 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' );
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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' ,
You can’t perform that action at this time.
0 commit comments