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 './'
This commit is contained in:
Zedifus 2023-04-15 01:54:50 +01:00
parent e92a88e698
commit ba429585d7

View File

@ -812,7 +812,7 @@ class Controller:
app_id=app_id, app_id=app_id,
) )
ServersController.set_import(new_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) ServersController.finish_import(new_id)
return new_id return new_id