diff options
author | Robby Russell <robby@planetargon.com> | 2015-08-12 21:11:10 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2015-08-12 21:11:10 -0700 |
commit | 84ecc66cb7ce993e4551d9e9fc2e51c43387e749 (patch) | |
tree | 79a44a1b4cb65bf2f3c634252358a4e1bdc94ae0 /themes/fino-time.zsh-theme | |
parent | 8c3d4a9826138363e4e24a0c720d54d7f1c5912b (diff) | |
parent | a3f0439de34ac2ce083c3d9f09b4e4f5379c158c (diff) | |
download | zsh-84ecc66cb7ce993e4551d9e9fc2e51c43387e749.tar.gz zsh-84ecc66cb7ce993e4551d9e9fc2e51c43387e749.tar.bz2 zsh-84ecc66cb7ce993e4551d9e9fc2e51c43387e749.zip |
Merge pull request #4172 from AlexTalker/fix-typo
Fix little typo that makes the statement useless.
Diffstat (limited to 'themes/fino-time.zsh-theme')
-rw-r--r-- | themes/fino-time.zsh-theme | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/fino-time.zsh-theme b/themes/fino-time.zsh-theme index 6e7e654ff..9b1db3a08 100644 --- a/themes/fino-time.zsh-theme +++ b/themes/fino-time.zsh-theme @@ -21,7 +21,7 @@ function prompt_char { } function box_name { - [ -f ~/.box-name ] && cat ~/.box-name || echo ${SHORT_HOST:-HOST} + [ -f ~/.box-name ] && cat ~/.box-name || echo ${SHORT_HOST:-$HOST} } |