[fix][web] launching root applications with terminal envs

This commit is contained in:
Vinícius Moreira
2020-02-12 12:22:53 -03:00
parent 04776ba22c
commit 7da91e8748

View File

@@ -876,7 +876,7 @@ class WebApplicationManager(SoftwareManager):
return True
def launch(self, pkg: WebApplication):
subprocess.Popen(pkg.get_command())
subprocess.Popen(pkg.get_command(), shell=user.is_root())
def get_screenshots(self, pkg: SoftwarePackage) -> List[str]:
pass