removed unneeded default value

pull/1141/head
Ethan Edwards 2018-04-30 13:43:16 -05:00
parent 1a7ebf4da7
commit 3bb21ba1e9
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ function _git-hide-status {
function _git-status {
local git_status_flags=
[[ "${SCM_GIT_IGNORE_UNTRACKED}" = "true" ]] && git_status_flags='-uno'
git status --porcelain ${git_status_flags:-} 2> /dev/null
git status --porcelain ${git_status_flags} 2> /dev/null
}
function _git-status-counts {