From d5cbeaa3607e42de98fd863edb9f5c3ff001d3d6 Mon Sep 17 00:00:00 2001 From: relikd Date: Sun, 31 Aug 2025 12:22:54 +0200 Subject: [PATCH] fix: brew "all" arch --- brew.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/brew.py b/brew.py index a86f6be..d342459 100755 --- a/brew.py +++ b/brew.py @@ -1013,6 +1013,8 @@ class Brew: Log.debug('[DEBUG] query Brew.sh manifest for', pkg, '...') manifest = ApiBrew.manifest(pkg, force=force) targets = manifest['bottle']['stable']['files'] + if arch not in targets and 'all' in targets: + arch = 'all' return Brew.PackageManifest( version=manifest['versions']['stable'], digest=targets[arch]['sha256'] if arch in targets else None,