Skip to content

Commit

Permalink
Suppress only_throw_errors in build script
Browse files Browse the repository at this point in the history
  • Loading branch information
osa1 committed Aug 16, 2023
1 parent 628dc1b commit c404792
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion benchmarks/tool/compile_benchmarks.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env dart
// ignore_for_file: only_throw_errors

import 'dart:io' show Directory, Platform, Process, ProcessResult, exit;

Expand Down Expand Up @@ -216,6 +217,6 @@ List<String> wasmOptProcessArgs(String sourceFile) {
return [
'$sdkPath/../pkg/dart2wasm/tool/compile_benchmark',
sourceFile,
'out/$baseNameNoExt.opt.wasm'
'out/$baseNameNoExt.opt.wasm',
];
}

0 comments on commit c404792

Please sign in to comment.