Installers for all platforms and related fixes #1

Merged
LeoVasanko merged 38 commits from installer into main 2026-09-23 17:41:21 +00:00
Showing only changes of commit bb88ab7d98 - Show all commits
+1 -1
View File
@@ -293,7 +293,7 @@ def fetch_dotnet() -> str:
with zipfile.ZipFile(io.BytesIO(data)) as zf: with zipfile.ZipFile(io.BytesIO(data)) as zf:
zf.extractall(_DOTNET_STAGING) zf.extractall(_DOTNET_STAGING)
else: else:
with tarfile.open(io.BytesIO(data), "r:gz") as tf: with tarfile.open(fileobj=io.BytesIO(data), mode="r:gz") as tf:
tf.extractall(_DOTNET_STAGING) tf.extractall(_DOTNET_STAGING)
staged.chmod(staged.stat().st_mode | stat.S_IXUSR | stat.S_IXGRP | stat.S_IXOTH) staged.chmod(staged.stat().st_mode | stat.S_IXUSR | stat.S_IXGRP | stat.S_IXOTH)