Update the bash prompt from 'applied' instead of the obsolete 'current'
[stgit] / contrib / stgbashprompt.sh
index 16bb39b..f4817a1 100755 (executable)
@@ -8,8 +8,8 @@ if [ "$PS1" ]; then
                git_dir=$(git-rev-parse --git-dir 2> /dev/null) || return
                ref=$(git-symbolic-ref HEAD 2> /dev/null) || return
                br=${ref#refs/heads/}
-               top=$(cat $git_dir/patches/$br/current 2>/dev/null) \
-                       && top="/$top"
+               top=$(tail -n 1 $git_dir/patches/$br/applied 2>/dev/null) \
+                       && top="/$top";
                echo "[$br$top]"
        }
        PS1='\u@\h:$(__prompt_git)\W\$ '