diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2019-02-25 15:43:41 +0900 |
---|---|---|
committer | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2019-04-09 14:59:34 +0900 |
commit | 0e6e86197d40f5499c54f4288c38d63bfdcdb256 (patch) | |
tree | 05728c84fda89fa516cf3dbb3d77d8007f0a061a /scripts | |
parent | f71c04567d20617cf10b3818903159a0744092d8 (diff) |
find: find yaml file
find yaml file, not -type f
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Diffstat (limited to 'scripts')
-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())) #-------------------- |