Fix eriner theme errors when git-info not enabled

as it was incorrectly testing for the `${+functions[git-info]}`.

Closes #142
This commit is contained in:
Eric Nielsen 2017-03-02 09:56:38 -05:00 committed by Matt Hamilton
parent eee6e911d2
commit 597d611d7b
1 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@
# jobs are running in this shell will all be displayed automatically when
# appropriate.
#
# Uses the 'git-info' Zim module.
# Requires the `git-info` zmodule to be included in the .zimrc file.
### Segment drawing
# Utility functions to make it easy and re-usable to draw segmented prompts.
@ -90,7 +90,7 @@ prompt_eriner_main() {
}
prompt_eriner_precmd() {
[[ ${+functions[git-info]} ]] && git-info
(( ${+functions[git-info]} )) && git-info
}
prompt_eriner_setup() {