[web] saving installation options to the disk

This commit is contained in:
Vinícius Moreira
2019-12-23 14:37:58 -03:00
parent 3775a0640d
commit 336f2b53c4
2 changed files with 8 additions and 2 deletions

View File

@@ -674,6 +674,9 @@ class WebApplicationManager(SoftwareManager):
with open(pkg.get_autostart_path(), 'w+') as f:
f.write(entry_content)
if install_options:
pkg.options_set = install_options
return True
def _gen_desktop_entry_content(self, pkg: WebApplication) -> str: