fix: skip borked tags on app list

See #656
This commit is contained in:
2025-10-01 21:13:18 +02:00
parent 4314195dd7
commit 4b4c56d406
2 changed files with 19 additions and 0 deletions

View File

@ -165,6 +165,11 @@ Use "--status/-S" flag to query all servers for the live deployment status.`),
}
for _, update := range updates {
if ok := tagcmp.IsParsable(update); !ok {
log.Debug(i18n.G("unable to parse %s, skipping as upgrade option", update))
continue
}
parsedUpdate, err := tagcmp.Parse(update)
if err != nil {
log.Fatal(err)