Skip to content

Commit

Permalink
last fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jorre127 committed Jan 28, 2025
1 parent 74eb76e commit cb83ec3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tool/setup/dart/rename_project.dart
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ void _performFinalCheck() {
if (element.path.startsWith('./.fvm/')) return false;
if (element.path.startsWith('./.idea/')) return false;
if (element.path.startsWith('./.DS_STORE')) return false;
if (element.path.startsWith('./widgetbook')) return false;
if (element.path.startsWith('./widgetbook/')) return false;
return true;
}).forEach((element) {
if (element.path.contains(originalProjectName) ||
Expand Down Expand Up @@ -348,6 +348,7 @@ void _performFinalCheck() {
if (element.path.endsWith('lcov.info')) return false;
if (element.path.endsWith('tool/dart_tool/rename_project.dart')) return false;
if (element.path.endsWith('./ios/Flutter/App.framework/flutter_assets/NOTICES')) return false;
if (element.path.startsWith('./widgetbook/')) return false;
if (Directory(element.path).existsSync()) return false;
return true;
}).forEach((element) {
Expand Down

0 comments on commit cb83ec3

Please sign in to comment.