From d219d3b8732af1e9bcf1638ac95c092219bd95a0 Mon Sep 17 00:00:00 2001 From: purian23 Date: Wed, 18 Feb 2026 09:41:36 -0500 Subject: [PATCH] dankinstall: Fix Debian ARM64 detection --- core/internal/distros/debian.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/internal/distros/debian.go b/core/internal/distros/debian.go index 8a501576..0f1721b7 100644 --- a/core/internal/distros/debian.go +++ b/core/internal/distros/debian.go @@ -430,7 +430,7 @@ func (d *DebianDistribution) enableOBSRepos(ctx context.Context, obsPkgs []Packa } // Add repository - repoLine := fmt.Sprintf("deb [signed-by=%s, arch=%s] %s/ /", keyringPath, runtime.GOARCH, baseURL) + repoLine := fmt.Sprintf("deb [signed-by=%s arch=%s] %s/ /", keyringPath, runtime.GOARCH, baseURL) progressChan <- InstallProgressMsg{ Phase: PhaseSystemPackages,