forked from toolshed/abra
fix: fetch recipe for "app list -S"
This commit is contained in:
@ -143,9 +143,13 @@ Use "--status/-S" flag to query all servers for the live deployment status.`,
|
||||
|
||||
var newUpdates []string
|
||||
if version != "unknown" {
|
||||
if err := app.Recipe.EnsureExists(); err != nil {
|
||||
log.Fatalf("unable to clone %s: %s", app.Name, err)
|
||||
}
|
||||
|
||||
updates, err := app.Recipe.Tags()
|
||||
if err != nil {
|
||||
log.Fatal(err)
|
||||
log.Fatalf("unable to retrieve tags for %s: %s", app.Name, err)
|
||||
}
|
||||
|
||||
parsedVersion, err := tagcmp.Parse(version)
|
||||
|
Reference in New Issue
Block a user