Skip to content

Commit

Permalink
Fix non-empty commit message for OpenEmbedded when no changes (ros-in…
Browse files Browse the repository at this point in the history
…frastructure#227)

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 069ad0f commit 78f6822
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 78f6822

Please sign in to comment.