Fixed & improved build scripts (#288)

* Fixed&improved build scripts

* Fixes and updates

* Fix for esp-idf-ci-action

* Build fixes
This commit is contained in:
Ken Van Hoeylandt
2025-06-09 21:03:18 +02:00
committed by GitHub
parent 1593eb80ce
commit a091923353
7 changed files with 36 additions and 9 deletions
+1 -1
View File
@@ -217,7 +217,7 @@ def sdk_download(version, platform):
print(f"Downloading SDK version {version} for {platform}")
if download_file(sdk_url, filepath):
with zipfile.ZipFile(filepath, "r") as zip_ref:
zip_ref.extractall(sdk_root_dir)
zip_ref.extractall(os.path.join(sdk_root_dir, "TactilitySDK"))
return True
else:
return False