Skip to content

Commit

Permalink
Fix non-empty commit message for OpenEmbedded when no changes (#234)
Browse files Browse the repository at this point in the history
- Fix a wild-card expansion that was accidentally matching more than
  just the version portion of recipe filenames.

- This commit resolves issue #227.
  • Loading branch information
herb-kuta-lge authored and allenh1 committed Nov 19, 2019
1 parent 1acfa96 commit 4f577a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superflore/generators/bitbake/gen_packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def regenerate_pkg(
component_name,
recipe,
)
existing = glob.glob('{}*.bb'.format(prefix))
existing = glob.glob('{}_*.bb'.format(prefix))
previous_version = None
if preserve_existing and existing:
ok("recipe for package '%s' up to date, skipping..." % pkg)
Expand Down

0 comments on commit 4f577a9

Please sign in to comment.