git-prompt.sh: don't assume the shell expands the value of PS1
authorRichard Hansen <rhansen@bbn.com>
Mon, 19 May 2014 22:55:37 +0000 (18:55 -0400)
committerJunio C Hamano <gitster@pobox.com>
Mon, 19 May 2014 23:09:53 +0000 (16:09 -0700)
Not all shells subject the prompt string to parameter expansion. Test
whether the shell will expand the value of PS1, and use the result to
control whether raw ref names are included directly in PS1.

This fixes a regression introduced in commit 8976500 ("git-prompt.sh:
don't put unsanitized branch names in $PS1"): zsh does not expand PS1
by default, but that commit assumed it did. The bug resulted in
prompts containing the literal string '${__git_ps1_branch_name}'
instead of the actual branch name.

Reported-by: Caleb Thompson <caleb@calebthompson.io>
Signed-off-by: Richard Hansen <rhansen@bbn.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
No differences found