From 2c91d2040e6c533a6b79272f95ba6536673a7c37 Mon Sep 17 00:00:00 2001 From: iexos Date: Tue, 27 May 2025 17:24:12 +0200 Subject: [PATCH] fix: app ls -S didn't show updates sometimes (#561) --- cli/app/list.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/app/list.go b/cli/app/list.go index 8b087d64..50e7ce5c 100644 --- a/cli/app/list.go +++ b/cli/app/list.go @@ -142,7 +142,7 @@ Use "--status/-S" flag to query all servers for the live deployment status.`, appStats.AutoUpdate = autoUpdate var newUpdates []string - if version != "unknown" && chaosVersion == "unknown" { + if version != "unknown" && chaos == "false" { if err := app.Recipe.EnsureExists(); err != nil { log.Fatalf("unable to clone %s: %s", app.Name, err) }