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))