From 04776ba22c56a6909b78ad3c134b17734bf5e8e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20Moreira?= Date: Wed, 12 Feb 2020 12:14:44 -0300 Subject: [PATCH] [fix][web] application root exec command --- bauh/gems/web/model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bauh/gems/web/model.py b/bauh/gems/web/model.py index 2cf19680..d87e731e 100644 --- a/bauh/gems/web/model.py +++ b/bauh/gems/web/model.py @@ -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'