From 67ee74ac20c452768caa95f348cb2b5088a1bf38 Mon Sep 17 00:00:00 2001 From: purian23 Date: Sun, 21 Dec 2025 21:59:20 -0500 Subject: [PATCH] core: Fix Debian Architecture logic --- core/internal/distros/debian.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/internal/distros/debian.go b/core/internal/distros/debian.go index 12776594..8a501576 100644 --- a/core/internal/distros/debian.go +++ b/core/internal/distros/debian.go @@ -4,6 +4,7 @@ import ( "context" "fmt" "os/exec" + "runtime" "strings" "github.com/AvengeMedia/DankMaterialShell/core/internal/deps" @@ -429,7 +430,7 @@ func (d *DebianDistribution) enableOBSRepos(ctx context.Context, obsPkgs []Packa } // Add repository - repoLine := fmt.Sprintf("deb [signed-by=%s] %s/ /", keyringPath, baseURL) + repoLine := fmt.Sprintf("deb [signed-by=%s, arch=%s] %s/ /", keyringPath, runtime.GOARCH, baseURL) progressChan <- InstallProgressMsg{ Phase: PhaseSystemPackages,