...
|
...
|
@@ -8,7 +8,7 @@ function git_prompt_info() {
|
8
|
8
|
# Checks if working tree is dirty
|
9
|
9
|
parse_git_dirty() {
|
10
|
10
|
local SUBMODULE_SYNTAX=''
|
11
|
|
- if [[ PRE_1_7_2_GIT -gt 0 ]]; then
|
|
11
|
+ if [[ POST_1_7_2_GIT -gt 0 ]]; then
|
12
|
12
|
SUBMODULE_SYNTAX="--ignore-submodules=dirty"
|
13
|
13
|
fi
|
14
|
14
|
if [[ -n $(git status -s ${SUBMODULE_SYNTAX} 2> /dev/null) ]]; then
|
...
|
...
|
@@ -70,7 +70,7 @@ git_prompt_status() {
|
70
|
70
|
}
|
71
|
71
|
|
72
|
72
|
#this is unlikely to change so make it all statically assigned
|
73
|
|
-PRE_1_7_2_GIT=$(git_compare_version "1.7.2")
|
|
73
|
+POST_1_7_2_GIT=$(git_compare_version "1.7.2")
|
74
|
74
|
#clean up the namespace slightly by removing the checker function
|
75
|
75
|
unset -f git_compare_version()
|
76
|
76
|
|