diff options
author | Leonid Volnitsky <Leonid@Volnitsky.com> | 2008-06-24 00:24:17 +0300 |
---|---|---|
committer | Leonid Volnitsky <Leonid@Volnitsky.com> | 2008-06-24 00:24:17 +0300 |
commit | e8020e6a42c313b98ebf831566150ed4dc377f29 (patch) | |
tree | 83a340e19846fe919245e8ef544a2cecbabdbec3 | |
parent | fix: non empty file_list (diff) | |
download | git-prompt-e8020e6a42c313b98ebf831566150ed4dc377f29.tar.gz git-prompt-e8020e6a42c313b98ebf831566150ed4dc377f29.tar.bz2 git-prompt-e8020e6a42c313b98ebf831566150ed4dc377f29.zip |
cleanup
-rwxr-xr-x | prompt | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -386,7 +386,7 @@ git_module() { ############################################################### PROMPT_COMMAND -_prompt_command() { +prompt_command_function() { rc="$?" if [[ "$rc" = "0" ]]; then @@ -416,12 +416,8 @@ _prompt_command() { } -PROMPT_COMMAND=_prompt_command +PROMPT_COMMAND=prompt_command_function -#echo \"$color_who_where\" unset rc id tty bell -# unset default_user default_host -#unset rc_color dir_color root_id_color - # vim: set syntax=sh: |