From ba429585d77532146fa7e559e17d39f64a354d15 Mon Sep 17 00:00:00 2001 From: Zedifus Date: Sat, 15 Apr 2023 01:54:50 +0100 Subject: [PATCH] Create a gamefiles dir with relative path Defineing an absolute path causes a file permissions error in steamcmd during app install Tested working on windows with './' --- app/classes/shared/main_controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/classes/shared/main_controller.py b/app/classes/shared/main_controller.py index fd09b6a6..079d778f 100644 --- a/app/classes/shared/main_controller.py +++ b/app/classes/shared/main_controller.py @@ -812,7 +812,7 @@ class Controller: app_id=app_id, ) ServersController.set_import(new_id) - self.steam.app_update(app_id, new_server_dir) + self.steam.app_update(app_id, "./gamefiles") ServersController.finish_import(new_id) return new_id