From 6dac600a6b7cb8eafeeb539e8c7ab2ccfa6004f5 Mon Sep 17 00:00:00 2001 From: HurricanePootis Date: Sat, 18 Nov 2023 19:09:26 -0600 Subject: [PATCH] use /tmp instead of /var/tmp on unix --- vars.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vars.py b/vars.py index 5b2f5e3..5a955d7 100644 --- a/vars.py +++ b/vars.py @@ -10,7 +10,7 @@ if system() == 'Windows': TEMP_PATH = tempfile.gettempdir() else: - TEMP_PATH = '/var/tmp/' + TEMP_PATH = '/tmp/' # For determining whether we're installing or updating/repairing the game INSTALLED = False