Skip to content

Commit 39330dc

Browse files
WebKit ARM64 Builderclaude
andcommitted
Configure Scoop to use external 7zip on ARM64
The 7zr.exe bootstrap extractor has access denied issues on ARM64. Configure Scoop to use external 7zip mode on ARM64 to work around this known issue. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent e04f156 commit 39330dc

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,12 @@ jobs:
294294
echo "$env:USERPROFILE\scoop\shims" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
295295
}
296296
297-
# Install 7zip first to avoid bootstrap extraction issues
297+
# Configure Scoop to use external 7zip for ARM64 to avoid extraction issues
298+
if ($isARM64) {
299+
scoop config use_external_7zip true
300+
}
301+
302+
# Install 7zip
298303
scoop install 7zip
299304
300305
# Install aria2 for parallel downloads

0 commit comments

Comments
 (0)