Make __git_ps1 default format string match the real one's.
dblume

dblume commited on 2021-11-02 22:16:20
Showing 1 changed files, with 1 additions and 1 deletions.

... ...
@@ -7,7 +7,7 @@ fi
7 7
 # Some devices may not have __git_ps1, so fake it
8 8
 if ! $(declare -F __git_ps1 >/dev/null); then
9 9
     __git_ps1() {
10
-        local fmt="${1:-%s}"
10
+        local fmt="${1:- (%s)}"
11 11
         local branch=$(git branch 2>/dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/')
12 12
         if [ -n "$branch" ]; then
13 13
             printf "$fmt" "$branch"
14 14