diff --git a/src/setup/states.rs b/src/setup/states.rs index e4e810f7c..b61488dea 100644 --- a/src/setup/states.rs +++ b/src/setup/states.rs @@ -372,14 +372,14 @@ impl std::fmt::Display f, "[ {:^9} ]", match self.0.status() { - ObjectStatus::New => "NEW", + ObjectStatus::New => "TO CREATE", ObjectStatus::Existing => if self.0.is_up_to_date() { "READY" } else { - "UPDATED" + "TO UPDATE" }, - ObjectStatus::Deleted => "DELETED", + ObjectStatus::Deleted => "TO DELETE", ObjectStatus::Invalid => "INVALID", } )