Skip to content

Commit 24772a6

Browse files
committed
Merge branch 'master' into misc/shared-analysis-config
2 parents c4c533f + 75417c0 commit 24772a6

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

dwds/debug_extension/tool/build_extension.dart

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ import 'package:args/args.dart';
1818
import 'package:path/path.dart' as p;
1919

2020
const _prodFlag = 'prod';
21-
const _mv2Flag = 'mv2';
2221

2322
void 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
);

0 commit comments

Comments
 (0)