From 93ca07dc52babf65b1b4eb24c58fb0ddda1765d6 Mon Sep 17 00:00:00 2001 From: m5rcel { Marcel } Date: Thu, 9 Oct 2025 20:26:11 +0200 Subject: [PATCH] Update updater.py --- utils/updater.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/updater.py b/utils/updater.py index 2e0fdc5..8e3e452 100644 --- a/utils/updater.py +++ b/utils/updater.py @@ -31,7 +31,7 @@ def check_and_update(): with tempfile.TemporaryDirectory() as tmpdir: download_and_extract(REPO_ZIP_URL, tmpdir) # Find the extracted subfolder (GitHub zips always contain one top-level folder) - zipped_root = Path(tmpdir) / "m5rcode-main" + zipped_root = Path(tmpdir) / "m5rcode-ubuntu-main" if not zipped_root.exists(): zipped_root = next(Path(tmpdir).iterdir()) # 3. Copy updated files over (here simply overwrite existing files)