File tree 3 files changed +11
-4
lines changed
3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,14 @@ class FileUtils {
35
35
queue.add (rootDirectory);
36
36
37
37
do {
38
- final dirList = queue.removeFirst ().listSync (recursive: false );
38
+ final entry = queue.removeFirst ();
39
+
40
+ if (entry.path.contains ('dart_tool/' )) {
41
+ continue ;
42
+ }
43
+
44
+ final dirList = entry.listSync (recursive: false );
45
+
39
46
for (final FileSystemEntity entity in dirList) {
40
47
if (entity is File && ( extension .isEmpty || entity.path.contains ( extension ) ) ) {
41
48
result.add (entity);
Original file line number Diff line number Diff line change 1
1
name : configurator
2
2
description : A new Flutter package project.
3
- version : 1.0.4
3
+ version : 1.0.5
4
4
homepage :
5
5
6
6
environment :
Original file line number Diff line number Diff line change 1
1
name : configurator_flutter
2
2
description : A new Flutter package project.
3
- version : 1.0.4
3
+ version : 1.0.5
4
4
homepage :
5
5
6
6
environment :
@@ -31,7 +31,7 @@ dependencies:
31
31
git :
32
32
url :
[email protected] :camrongiuliani/configurator.git
33
33
path : configurator
34
- ref : 1.0.4
34
+ ref : 1.0.5
35
35
36
36
dev_dependencies :
37
37
flutter_test :
You can’t perform that action at this time.
0 commit comments