{{ message }}
Update AltSign to fix Windows IPA permission errors (#447)#1315
Merged
nythepegasus merged 1 commit intoMay 26, 2026
Conversation
Bumps the AltSign submodule to SideStore/AltSign#13, which makes unzipArchiveAtURL: fall back to 0644 when a ZIP entry carries no Unix mode bits (as produced by Windows zip tooling). Previously these entries extracted with mode 0000 and failed during signing with a "You don't have permission" error. Fixes SideStore#447
The-Big-Mini
referenced
this pull request
in The-Big-Mini/MiniStore
Jun 3, 2026
Update AltSign to include Windows IPA permissions fix Bumps the AltSign submodule to SideStore/AltSign#13, which makes unzipArchiveAtURL: fall back to 0644 when a ZIP entry carries no Unix mode bits (as produced by Windows zip tooling). Previously these entries extracted with mode 0000 and failed during signing with a "You don't have permission" error. Fixes #447
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Summary
Bumps the
AltSignsubmodule to pick up SideStore/AltSign#13 (now merged), which fixes the "You don't have permission" error when installing IPAs that were zipped on Windows.Background
IPAs created with Windows zip tooling store NTFS file attributes in the ZIP
external_fafield and leave the Unix mode bits (the high 16 bits) unset. AltSign'sunzipArchiveAtURL:derived a permission of0from those entries and applied it withsetAttributes:, so the extracted files ended up with mode0000. The reads performed while signing then failed, surfacing to users as "You don't have permission."The merged AltSign change falls back to
0644when no Unix mode bits are present, so these archives extract with readable files. IPAs produced by Xcode (which carry valid Unix permissions) are unaffected.Changes
Dependencies/AltSign:7efe511→a484932Fixes #447