From df97448bdbb5656a7551bf5eb01110981e24a18b Mon Sep 17 00:00:00 2001 From: Mikhail Tergoev Date: Fri, 7 Mar 2025 02:47:11 +0300 Subject: [PATCH] minor fix for tmp_path --- portproton.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/portproton.py b/portproton.py index c7cc03e..d95c37a 100755 --- a/portproton.py +++ b/portproton.py @@ -10,7 +10,7 @@ from modules.downloader import * from modules.init_wine import * from modules.source_fetcher import * -tmp_path = tempfile.gettempdir() +tmp_path = tempfile.gettempdir() + "/portproton" work_path = get_env_var("USER_WORK_PATH")