From 777300ed76e8a23219e2525883469d0ecfba6aca Mon Sep 17 00:00:00 2001 From: Chen Asraf Date: Tue, 16 Sep 2025 16:28:28 +0300 Subject: [PATCH] fix(apt): fix apt/apk installer command --- installer/apt_installer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/apt_installer.go b/installer/apt_installer.go index c394cae..edae674 100644 --- a/installer/apt_installer.go +++ b/installer/apt_installer.go @@ -70,7 +70,7 @@ func (i *AptInstaller) CheckNeedsUpdate() (bool, error) { if i.HasCustomUpdateCheck() { return i.RunCustomUpdateCheck() } - err := i.RunCmdPassThrough("apk", "update") + err := i.RunCmdPassThrough(string(i.Data.Type), "update") if err != nil { return false, err }