From 8721a653e775782e4ef68a0287fe5d814e915819 Mon Sep 17 00:00:00 2001 From: Ken Van Hoeylandt Date: Fri, 3 Jul 2026 23:17:09 +0200 Subject: [PATCH] Tool 4.1.0 --- tactility.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tactility.py b/tactility.py index 7fead72..769de53 100644 --- a/tactility.py +++ b/tactility.py @@ -12,7 +12,7 @@ import tarfile from urllib.parse import urlparse ttbuild_path = ".tactility" -ttbuild_version = "4.0.0" +ttbuild_version = "4.1.0" ttbuild_cdn = "https://cdn.tactilityproject.org" ttbuild_sdk_json_validity = 3600 # seconds ttport = 6666 @@ -192,7 +192,7 @@ def fetch_sdkconfig_files(platform_targets): for platform in platform_targets: sdkconfig_filename = f"sdkconfig.app.{platform}" target_path = os.path.join(ttbuild_path, sdkconfig_filename) - if not download_file(f"{ttbuild_cdn}/{sdkconfig_filename}", target_path): + if not download_file(f"{ttbuild_cdn}/sdk/{sdkconfig_filename}", target_path): exit_with_error(f"Failed to download sdkconfig file for {platform}") #endregion SDK helpers