From b701c30d26a62b41bf6e3b46e91688669c00a179 Mon Sep 17 00:00:00 2001 From: Lx32 Date: Mon, 15 Jan 2024 15:16:13 +0100 Subject: [PATCH] Fixed sync path in steam-sync.py --- functions/steam-sync/steam-sync.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/functions/steam-sync/steam-sync.py b/functions/steam-sync/steam-sync.py index 4d9d3ef6..b321549f 100644 --- a/functions/steam-sync/steam-sync.py +++ b/functions/steam-sync/steam-sync.py @@ -341,9 +341,21 @@ def addToSteam(): if not os.path.exists(rdhome+"/sync/"): os.makedirs(rdhome+"/sync/") + ''' if not os.path.exists(os.path.expanduser("~/.var/app/net.retrodeck.retrodeck/config/boilr/sync")): os.symlink(rdhome+"/sync",os.path.expanduser("~/.var/app/net.retrodeck.retrodeck/config/boilr/sync")) + ''' + boilr_path=os.path.expanduser("~/.var/app/net.retrodeck.retrodeck/config/boilr/config.toml") + if os.path.isfile(boilr_path): + with open("boilr_path","r") as f: + data=f.read() + data=re.sub("games_folder.*","games_folder = "+rdhome+"/sync/",data) + with open("boilr_path","w") as f: + f.write(data) + else: + print("Error! BoilR config not initialized.") + for system in os.listdir(rdhome+"/gamelists/"): print("Start parsing system: {}".format(system))