* [PATCH] Fix bash completion to not garble the screen with an error message.
@ 2007-03-06 20:18 Yann Dirson
  0 siblings, 0 replies; only message in thread
From: Yann Dirson @ 2007-03-06 20:18 UTC (permalink / raw)
  To: Catalin Marinas; +Cc: git
Maybe we could refuse to complete further when the command was not
recognized, but at least this fix avoids the annoying behaviour.
Signed-off-by: Yann Dirson <ydirson@altern.org>
---
 contrib/stgit-completion.bash |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/contrib/stgit-completion.bash b/contrib/stgit-completion.bash
index 8a027bf..18645dc 100644
--- a/contrib/stgit-completion.bash
+++ b/contrib/stgit-completion.bash
@@ -99,7 +99,7 @@ _all_other_patches ()
 # List the command options
 _cmd_options ()
 {
-    stg $1 --help | grep -e " --[A-Za-z]" | sed -e "s/.*\(--[^ =]\+\).*/\1/"
+    stg $1 --help 2>/dev/null | grep -e " --[A-Za-z]" | sed -e "s/.*\(--[^ =]\+\).*/\1/"
 }
 
 # Generate completions for patches and patch ranges from the given
^ permalink raw reply related	[flat|nested] only message in thread
only message in thread, other threads:[~2007-03-06 20:18 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-03-06 20:18 [PATCH] Fix bash completion to not garble the screen with an error message Yann Dirson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).