[fix][web] application root exec command

This commit is contained in:
Vinícius Moreira
2020-02-12 12:14:44 -03:00
parent 97cb9242b5
commit 04776ba22c

View File

@@ -49,7 +49,7 @@ class WebApplication(SoftwarePackage):
def get_command(self) -> str:
if self.installation_dir:
return '{}{}'.format(self.get_exec_path(), '--no-sandbox' if user.is_root() else '')
return '{}{}'.format(self.get_exec_path(), ' --no-sandbox' if user.is_root() else '')
def get_type(self):
return 'web'