Skip to content

Commit

Permalink
Fix little typo that makes the statement useless.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexTalker committed Jul 19, 2015
1 parent a207a38 commit a3f0439
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion themes/candy-kingdom.zsh-theme
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ patches: <patches|join( → )|pre_applied(%{$fg[yellow]%})|post_applied(%{$reset
}

function box_name {
[ -f ~/.box-name ] && cat ~/.box-name || echo ${SHORT_HOST:-HOST}
[ -f ~/.box-name ] && cat ~/.box-name || echo ${SHORT_HOST:-$HOST}
}

PROMPT='
Expand Down
2 changes: 1 addition & 1 deletion themes/fino-time.zsh-theme
Original file line number Diff line number Diff line change
Expand Up @@ -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}
}


Expand Down
2 changes: 1 addition & 1 deletion themes/fino.zsh-theme
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,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}
}

local ruby_env=''
Expand Down

0 comments on commit a3f0439

Please sign in to comment.