From b5af70985d7f0b7d7f50a303357a5ee49e14070d Mon Sep 17 00:00:00 2001 From: Chen Asraf Date: Wed, 25 Dec 2024 00:10:45 +0200 Subject: [PATCH] fix: group should always "have update" --- installer/group_installer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/group_installer.go b/installer/group_installer.go index 9072cf6..9fc15c3 100644 --- a/installer/group_installer.go +++ b/installer/group_installer.go @@ -44,7 +44,7 @@ func (i *GroupInstaller) CheckNeedsUpdate() (error, bool) { if i.GetInfo().CheckHasUpdate != nil { return utils.RunCmdGetSuccess("sh", "-c", *i.GetInfo().CheckHasUpdate) } - return nil, false + return nil, true } // CheckIsInstalled implements IInstaller.