Skip to content

Commit

Permalink
fix: add .fvm to ignored directories for pubspec files searching
Browse files Browse the repository at this point in the history
  • Loading branch information
Limbou committed Mar 7, 2022
1 parent a4a7d07 commit b31f116
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/src/cli/cli.dart
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class _Cmd {
) {
if (pr.exitCode != 0) {
final values = {
'Standard out': pr.stdout.toString().trim(),
'Standard out': pr.stdout.toString().trim(),
'Standard error': pr.stderr.toString().trim()
}..removeWhere((k, v) => v.isEmpty);

Expand All @@ -65,6 +65,7 @@ const _ignoredDirectories = {
'.plugin_symlinks',
'.dart_tool',
'build',
'.fvm',
};

bool _isPubspec(FileSystemEntity entity) {
Expand Down

0 comments on commit b31f116

Please sign in to comment.