From eba8a3c11ee817972f17d793ba1c7a56f25bf269 Mon Sep 17 00:00:00 2001 From: Patrick Griffis Date: Fri, 19 May 2017 00:08:39 -0400 Subject: [PATCH] Don't generate cache files when ran locally --- bin/lutris | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/lutris b/bin/lutris index 098b1b29a..fc1a3be42 100755 --- a/bin/lutris +++ b/bin/lutris @@ -20,6 +20,7 @@ from os.path import realpath, dirname, normpath LAUNCH_PATH = dirname(realpath(__file__)) if LAUNCH_PATH != "/usr/bin": + sys.dont_write_bytecode = True SOURCE_PATH = normpath(os.path.join(LAUNCH_PATH, '..')) sys.path.insert(0, SOURCE_PATH)