Skip to content

Commit

Permalink
Fix non-empty commit message for OpenEmbedded when no changes
Browse files Browse the repository at this point in the history
Fix a wild-card expansion that was accidentally matching more than just
version portion of recipe filenames.
  • Loading branch information
herb-kuta-lge committed Nov 15, 2019
1 parent 81eb5bd commit 8b2fa52
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 8b2fa52

Please sign in to comment.