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() {
FLAGS+='--untracked-files=no'
fi
case "$GIT_STATUS_IGNORE_SUBMODULES" in
"")
# if unset: ignore dirty submodules
FLAGS+="--ignore-submodules=dirty"
;;
"git")
git)
# let git decide (this respects per-repo config in .gitmodules)
;;
*)
# if unset: ignore dirty submodules
# other values are passed to --ignore-submodules
FLAGS+="--ignore-submodules=$GIT_STATUS_IGNORE_SUBMODULES"
FLAGS+="--ignore-submodules=${GIT_STATUS_IGNORE_SUBMODULES:-dirty}"
;;
esac
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