diff options
| author | ruki <[email protected]> | 2019-12-29 22:42:12 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2019-12-29 22:42:12 +0800 |
| commit | 293e1b03f4d83e7c07ef41b718e3fbb77b8d48eb (patch) | |
| tree | e98665ff1dd0521899fee5b729b933cd9205debd | |
| parent | a2a2685a4347b8c41a1bf7225533c5d0d2b2f999 (diff) | |
fix plain theme
| -rw-r--r-- | xmake/themes/plain/xmake.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmake/themes/plain/xmake.lua b/xmake/themes/plain/xmake.lua index eda3c3816..c7c61516b 100644 --- a/xmake/themes/plain/xmake.lua +++ b/xmake/themes/plain/xmake.lua @@ -26,15 +26,15 @@ theme("plain") set_color("success", "") -- the failure status - set_text("failure", "failed") + set_text("failure", "$failed") set_color("failure", "") -- the nothing status - set_text("nothing", "no") + set_text("nothing", "$no") set_color("nothing", "") -- the error info - set_text("error", "error") + set_text("error", "$error") set_color("error", "") -- the warning info |
