summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--01_Functions.zsh2
1 files changed, 1 insertions, 1 deletions
diff --git a/01_Functions.zsh b/01_Functions.zsh
index 82bde17..aa96dea 100644
--- a/01_Functions.zsh
+++ b/01_Functions.zsh
@@ -47,7 +47,7 @@ get_git_branch ()
{
local my_git_branch
- [ "$(git-ls-files . | head -n 1)" == "" ] && return
+ [ "$(git-ls-files . 2>&- | head -n 1)" == "" ] && return
# Get current working GIT branch
my_git_branch="$(git-branch 2>&- | grep -E '^\* ' | cut -c3-)"