Skip to content

Commit

Permalink
chore: fix devtool, add examples check
Browse files Browse the repository at this point in the history
  • Loading branch information
UncleRus committed Feb 6, 2024
1 parent 78ac5bf commit 7631a90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devtools/devtool.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def cmd_ci(self):

diff = tuple(l.split('/') for l in diff.stdout.strip().replace('\r', '').split('\n'))
dirs = set((l[0] for l in diff))
changed_components = set((l[1] for l in diff if len(l) > 1 and l[0] == 'components'))
changed_components = set((l[1] for l in diff if len(l) > 1 and l[0] in ('components', 'examples')))
all_components = {c.name: c for c in self.iter_components()}
components_to_build = set()

Expand Down

0 comments on commit 7631a90

Please sign in to comment.