diff options
| author | Joey Hess <joey@kitenet.net> | 2014-04-02 00:52:39 -0400 |
|---|---|---|
| committer | Joey Hess <joey@kitenet.net> | 2014-04-02 00:52:39 -0400 |
| commit | 6f032f7ee3ac43d4b77c78786c0951b49ce5b8e7 (patch) | |
| tree | 131751301e361294d06d8a073c3c6f73b362fdf7 /Propellor/Types.hs | |
| parent | 845162a2b14fbf270195d432078fb90c93543572 (diff) | |
propellor spin
Diffstat (limited to 'Propellor/Types.hs')
| -rw-r--r-- | Propellor/Types.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Propellor/Types.hs b/Propellor/Types.hs index bcb5efd1..1be56748 100644 --- a/Propellor/Types.hs +++ b/Propellor/Types.hs @@ -48,10 +48,10 @@ class ActionResult a where instance ActionResult Bool where getActionResult False = ("failed", Vivid, Red) - getActionResult True = ("ok", Dull, Green) + getActionResult True = ("done", Dull, Green) instance ActionResult Result where - getActionResult NoChange = ("unchanged", Dull, Green) + getActionResult NoChange = ("ok", Dull, Green) getActionResult MadeChange = ("done", Vivid, Green) getActionResult FailedChange = ("failed", Vivid, Red) |
