Suppress warning in zsh_completion script
authorMikael Berthe <mikael@lilotux.net>
Fri, 30 Sep 2005 11:06:13 -0700
changeset 1365 74cf45f8bc19
parent 1364 0f25830f6bc3
child 1366 136920d13fc2
Suppress warning in zsh_completion script
contrib/zsh_completion
--- a/contrib/zsh_completion
+++ b/contrib/zsh_completion
@@ -16,7 +16,7 @@ local curcontext="$curcontext" state lin
 typeset -A opt_args
 local subcmds repos tags newFiles addedFiles
 
-tags=($(hg tags | sed -e 's/[0-9]*:[a-f0-9]\{40\}$//; s/ *$//'))
+tags=($(hg tags 2> /dev/null | sed -e 's/[0-9]*:[a-f0-9]\{40\}$//; s/ *$//
 subcmds=($(hg -v help | sed -e '1,/^list of commands:/d' \
       -e '/^global options:/,$d' -e '/^ [^ ]/!d; s/[,:]//g;'))