diff options
author | Robby Russell <robby@planetargon.com> | 2013-12-02 23:24:01 -0800 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2013-12-02 23:24:01 -0800 |
commit | b6f4a887acb5b70acaf3d15b32d23c642a98cabe (patch) | |
tree | 707fe409afcbaa7facc077e460e8f9ca0d33e68a /plugins | |
parent | 4fc08061238ed02f59c87087b653e5eb87dad15b (diff) | |
parent | 05b3ea342ad581d02ed652a4bbe29786026a5b50 (diff) | |
download | zsh-b6f4a887acb5b70acaf3d15b32d23c642a98cabe.tar.gz zsh-b6f4a887acb5b70acaf3d15b32d23c642a98cabe.tar.bz2 zsh-b6f4a887acb5b70acaf3d15b32d23c642a98cabe.zip |
Merge pull request #2131 from stevschmid/patch-1
Fix gallois theme
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/git/git.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index c7e98654a..7b3cec27d 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -142,7 +142,7 @@ compdef _git glp=git-log # # This function return a warning if the current branch is a wip function work_in_progress() { - if $(git log -n 1 | grep -q -c wip); then + if $(git log -n 1 2>/dev/null | grep -q -c wip); then echo "WIP!!" fi } |