diff --git a/internal/core/box.go b/internal/core/box.go index fce97ad22..df029e1c7 100644 --- a/internal/core/box.go +++ b/internal/core/box.go @@ -297,7 +297,7 @@ func (b *Box) Machines(index core.TargetIndex) (machines []core.Machine, err err return nil, err } for _, t := range targets { - if s, _ := t.State(); s == core.CREATED { + if s, _ := t.State(); s == core.DESTROYED { continue } m, err := t.Specialize((*core.Machine)(nil))