From 7a99e0485b19f05aa839e9a1b086b4ef83aaa6d8 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) }