From 912550e0eda873ada3f68bf770e683e3fbea9741 Mon Sep 17 00:00:00 2001 From: Vinicius Moreira Date: Thu, 20 Aug 2020 14:34:01 -0300 Subject: [PATCH] [appimage] fix -> not informing the env vars during the launch process --- bauh/gems/appimage/controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bauh/gems/appimage/controller.py b/bauh/gems/appimage/controller.py index f4e90866..a1da2aeb 100644 --- a/bauh/gems/appimage/controller.py +++ b/bauh/gems/appimage/controller.py @@ -670,7 +670,7 @@ class AppImageManager(SoftwareManager): appimag_path = util.find_appimage_file(installation_dir) if appimag_path: - subprocess.Popen(args=appimag_path, shell=True) + subprocess.Popen(args=[appimag_path], shell=True, env={**os.environ}) else: self.logger.error("Could not find the AppImage file of '{}' in '{}'".format(pkg.name, installation_dir))