Commit b7e37cea authored by Marc Cornellà's avatar Marc Cornellà
Browse files

Clean up ignore submodules logic in parse_git_dirty

parent 7cc3a32b
...@@ -18,16 +18,13 @@ function parse_git_dirty() { ...@@ -18,16 +18,13 @@ function parse_git_dirty() {
FLAGS+='--untracked-files=no' FLAGS+='--untracked-files=no'
fi fi
case "$GIT_STATUS_IGNORE_SUBMODULES" in case "$GIT_STATUS_IGNORE_SUBMODULES" in
"") git)
# if unset: ignore dirty submodules
FLAGS+="--ignore-submodules=dirty"
;;
"git")
# let git decide (this respects per-repo config in .gitmodules) # let git decide (this respects per-repo config in .gitmodules)
;; ;;
*) *)
# if unset: ignore dirty submodules
# other values are passed to --ignore-submodules # other values are passed to --ignore-submodules
FLAGS+="--ignore-submodules=$GIT_STATUS_IGNORE_SUBMODULES" FLAGS+="--ignore-submodules=${GIT_STATUS_IGNORE_SUBMODULES:-dirty}"
;; ;;
esac esac
STATUS=$(command git status ${FLAGS} 2> /dev/null | tail -n1) STATUS=$(command git status ${FLAGS} 2> /dev/null | tail -n1)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment