From 3bb21ba1e9feaa90aebde84fd550575801aa694f Mon Sep 17 00:00:00 2001 From: Ethan Edwards Date: Mon, 30 Apr 2018 13:43:16 -0500 Subject: [PATCH] removed unneeded default value --- themes/githelpers.theme.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/githelpers.theme.bash b/themes/githelpers.theme.bash index 833e5190..1f43382d 100644 --- a/themes/githelpers.theme.bash +++ b/themes/githelpers.theme.bash @@ -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 {