From 9cf49264647e629ceb8e1f58de2fabaaad64601b Mon Sep 17 00:00:00 2001 From: TakaRikka <38417346+TakaRikka@users.noreply.github.com> Date: Sat, 24 Feb 2024 19:03:58 -0800 Subject: [PATCH] fix compiler zip endpoint (#2077) --- tools/tp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/tp.py b/tools/tp.py index 4e0a290bae7..57dac606593 100644 --- a/tools/tp.py +++ b/tools/tp.py @@ -171,7 +171,7 @@ def setup(debug: bool, game_path: Path, tools_path: Path, yaz0_encoder: str, for shutil.rmtree(compilers) if not compilers.exists() or not compilers.is_dir(): os.mkdir(compilers) - r = requests.get('https://cdn.discordapp.com/attachments/727918646525165659/1129759991696457728/GC_WII_COMPILERS.zip') + r = requests.get('https://files.decomp.dev/compilers_20230715.zip') z = zipfile.ZipFile(io.BytesIO(r.content)) z.extractall(compilers) gc_path = compilers.joinpath("GC")