From 90c8dbe0bb62cdbbc5bcc8713096ae44599d70d9 Mon Sep 17 00:00:00 2001 From: Xodetaetl Date: Tue, 12 Aug 2014 18:47:17 +0200 Subject: [PATCH] Fix Linux.play() using relative path for the executable --- lutris/runners/linux.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lutris/runners/linux.py b/lutris/runners/linux.py index 238a85776..fe597fa09 100644 --- a/lutris/runners/linux.py +++ b/lutris/runners/linux.py @@ -88,7 +88,7 @@ class linux(Runner): launch_info['ld_library_path'] = ld_library_path command = [] - command.append("./%s" % os.path.basename(executable)) + command.append('"%s"' % self.game_exe) args = game_config.get('args', "") for arg in args.split():