mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 03:34:15 +02:00
refresh app action: not returning an error when there is no update available
This commit is contained in:
@@ -84,6 +84,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||||||
- Snap
|
- Snap
|
||||||
- not able to install classic Snaps due to Ubuntu's old Snaps API shutdown
|
- 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)
|
- 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
|
- Web
|
||||||
- some environment variable are not available during the launch process
|
- some environment variable are not available during the launch process
|
||||||
- UI
|
- UI
|
||||||
|
|||||||
@@ -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:
|
def refresh_and_stream(app_name: str, root_password: str) -> SimpleProcess:
|
||||||
return SimpleProcess(cmd=[BASE_CMD, 'refresh', app_name],
|
return SimpleProcess(cmd=[BASE_CMD, 'refresh', app_name],
|
||||||
root_password=root_password,
|
root_password=root_password,
|
||||||
|
error_phrases={'no updates available'},
|
||||||
shell=True)
|
shell=True)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user