File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
dwds/debug_extension/tool Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ import 'package:args/args.dart';
1818import 'package:path/path.dart' as p;
1919
2020const _prodFlag = 'prod' ;
21- const _mv2Flag = 'mv2' ;
2221
2322void main (List <String > arguments) async {
2423 final parser = ArgParser ()
@@ -27,14 +26,13 @@ void main(List<String> arguments) async {
2726
2827 exitCode = await run (
2928 isProd: argResults[_prodFlag] as bool ,
30- isMV2: argResults[_mv2Flag] as bool ,
3129 );
3230 if (exitCode != 0 ) {
3331 _logWarning ('Run terminated unexpectedly with exit code: $exitCode ' );
3432 }
3533}
3634
37- Future <int > run ({required bool isProd, required bool isMV2 }) async {
35+ Future <int > run ({required bool isProd}) async {
3836 _logInfo (
3937 'Building extension for ${isProd ? 'prod' : 'dev' }' ,
4038 );
You can’t perform that action at this time.
0 commit comments