diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ecab792..7b13ffc7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -84,6 +84,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Snap - not able to install classic Snaps due to Ubuntu's old Snaps API shutdown - some environment variables are not available during the common operations (install, upgrade, downgrade, uninstall, launch) + - refresh app action: not returning an error when there is no update available - Web - some environment variable are not available during the launch process - UI diff --git a/bauh/gems/snap/snap.py b/bauh/gems/snap/snap.py index 74e0e890..0558df23 100644 --- a/bauh/gems/snap/snap.py +++ b/bauh/gems/snap/snap.py @@ -37,6 +37,7 @@ def downgrade_and_stream(app_name: str, root_password: str) -> SimpleProcess: def refresh_and_stream(app_name: str, root_password: str) -> SimpleProcess: return SimpleProcess(cmd=[BASE_CMD, 'refresh', app_name], root_password=root_password, + error_phrases={'no updates available'}, shell=True)