(err error)
| 611 | } |
| 612 | |
| 613 | func (cmd PushCommand) shouldDisplaySummary(err error) bool { |
| 614 | if err == nil { |
| 615 | return true |
| 616 | } |
| 617 | _, ok := err.(actionerror.AllInstancesCrashedError) |
| 618 | return ok |
| 619 | } |
| 620 | |
| 621 | func (cmd PushCommand) mapErr(appName string, err error) error { |
| 622 | switch err.(type) { |