Skip to content

Commit

Permalink
updates.py: don't try to update nightly to releases builds for now
Browse files Browse the repository at this point in the history
Signed-off-by: Ian Leonard <[email protected]>
  • Loading branch information
antonlacon committed Oct 2, 2022
1 parent d40df96 commit a175377
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/lib/modules/updates.py
Original file line number Diff line number Diff line change
Expand Up @@ -579,8 +579,8 @@ def get_highest_value(list):
statistics_submission = None

# devel versions manage their own updates
if oe.VERSION.startswith('devel'):
log.log('Update check skipped because this is a development build.', log.INFO)
if oe.VERSION.startswith('devel') or 'nightly' in oe.VERSION:
log.log('Update check skipped on nightly or development builds.', log.INFO)
self.last_update_check = time.time()
return

Expand Down

0 comments on commit a175377

Please sign in to comment.