diff options
Diffstat (limited to 'git-base.sh')
-rwxr-xr-x | git-base.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/git-base.sh b/git-base.sh index 6d39c5a..f854ae3 100755 --- a/git-base.sh +++ b/git-base.sh @@ -206,7 +206,7 @@ conflicted="%{$fg_bold[yellow]%}" untracked="%{$fg_bold[white]%}" is_dirty() { - if ! git rev-parse 2>&1 /dev/null; then + if ! git rev-parse &> /dev/null; then #not in repo, thus not dirty return 1 else @@ -216,9 +216,9 @@ is_dirty() { return 0 else #no untracked files - if git show HEAD -- 2>&1 /dev/null; then + if git show HEAD -- &> /dev/null; then #has a commit hash, thus not on an initial commit - if ! git diff --quiet --ignore-submodules HEAD -- 2>&1 /dev/null; then + if ! git diff --quiet --ignore-submodules HEAD -- &> /dev/null; then #has differences thus dirty return 0 else |