Skip to content

Commit

Permalink
cmd/status: fix dropped error
Browse files Browse the repository at this point in the history
  • Loading branch information
alrs committed Sep 28, 2020
1 parent e4978be commit a27057b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cmd/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ func runStatus(ctx *cmdctx.CmdContext) error {
}

_, backupregions, err := ctx.Client.API().ListAppRegions(ctx.AppName)
if err != nil {
return err
}

err = ctx.Frender(cmdctx.PresenterOption{Presentable: &presenters.AppStatus{AppStatus: *app}, HideHeader: true, Vertical: true, Title: "App"})
if err != nil {
Expand Down

0 comments on commit a27057b

Please sign in to comment.