diff --git a/pkg/actions/deploy.go b/pkg/actions/deploy.go index 824f9df..db57503 100644 --- a/pkg/actions/deploy.go +++ b/pkg/actions/deploy.go @@ -166,9 +166,11 @@ func (d *Deploy) Run(ctx context.Context) error { // nolint: gocyclo d.log.Printf("All changes applied in %s.\n", time.Since(start).Truncate(timeTruncate)) } - err = d.showStateStatus(appStates, dependencyStates) - if err != nil { - return err + if !canceled { + err = d.showStateStatus(appStates, dependencyStates) + if err != nil { + return err + } } return saveErr