Skip to content

Commit

Permalink
update_bindings: delete src should only delete lib/src/dom (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevmoo authored Aug 2, 2023
1 parent 0344abd commit 27238d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tool/update_bindings.dart
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ $_usage''');
// Run app with `node`.
if (argResult['delete-src'] as bool) {
// TODO(dart-lang/web#28): file cleanup should happen in the tool itself
final srcDir = Directory(p.join(p.current, 'lib', 'src'));
final srcDir = Directory(p.join(p.current, 'lib', 'src', 'dom'));

if (srcDir.existsSync()) {
srcDir.deleteSync(recursive: true);
Expand Down

0 comments on commit 27238d4

Please sign in to comment.