diff options
-rwxr-xr-x | scripts/find.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/find.py b/scripts/find.py index 3150475..2023842 100755 --- a/scripts/find.py +++ b/scripts/find.py @@ -75,7 +75,7 @@ class find(base.base): # all project files if no files if (len(self.files) == 0): - self.files = self.run("find {}/projects -type f | grep -v schema".\ + self.files = self.run("find {}/projects -name \"*.yaml\" | grep -v schema".\ format(self.top())) #-------------------- |