[arch] fix -> not informing the env vars during the launch process

This commit is contained in:
Vinicius Moreira
2020-08-20 17:28:31 -03:00
parent 72573cf300
commit 20f049315c
2 changed files with 2 additions and 2 deletions

View File

@@ -2412,7 +2412,7 @@ class ArchManager(SoftwareManager):
def launch(self, pkg: ArchPackage):
if pkg.command:
subprocess.Popen(pkg.command.split(' '))
subprocess.Popen(args=[pkg.command], shell=True, env={**os.environ})
def get_screenshots(self, pkg: SoftwarePackage) -> List[str]:
pass