From 0b087a38279fa47ec79b85bbd45fe3e52b7022d5 Mon Sep 17 00:00:00 2001 From: savil <676452+savil@users.noreply.github.com> Date: Wed, 5 Feb 2025 09:58:28 -0800 Subject: [PATCH] [easy][minor] correct comment about runx This comment was incorrect. It IsDevboxPackage returns true for runx (which is okay for this function) Signed-off-by: savil <676452+savil@users.noreply.github.com> --- internal/devbox/packages.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/devbox/packages.go b/internal/devbox/packages.go index 890ae06d307..2cdc9923e0b 100644 --- a/internal/devbox/packages.go +++ b/internal/devbox/packages.go @@ -54,7 +54,7 @@ func (d *Devbox) Outdated(ctx context.Context) (map[string]UpdateVersion, error) outdatedPackages := map[string]UpdateVersion{} for _, pkg := range d.AllPackages() { - // For non-devbox packages, like flakes or runx, we can skip for now + // For non-devbox packages, like flakes, we can skip for now if !pkg.IsDevboxPackage { continue }