From 0a1220b4e963d74d1644c1ff7e40f79e601122f4 Mon Sep 17 00:00:00 2001 From: Eric Phillips Date: Sat, 18 Apr 2026 23:15:30 -0600 Subject: [PATCH] added multilib to cache --- internal/cache/cache.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cache/cache.go b/internal/cache/cache.go index d108200..41d3ec4 100644 --- a/internal/cache/cache.go +++ b/internal/cache/cache.go @@ -33,7 +33,7 @@ func NewCache(cacheRoot string, mirrorURL string) *Cache { return &Cache{ cacheRoot: cacheRoot, mirrorURL: mirrorURL, - mirroredRepos: []string{"core", "extra"}, + mirroredRepos: []string{"core", "extra", "multilib"}, client: http.Client{ Timeout: 15 * time.Second, Transport: transport,