summaryrefslogtreecommitdiff
path: root/completions/portinstall
diff options
context:
space:
mode:
Diffstat (limited to 'completions/portinstall')
-rw-r--r--completions/portinstall7
1 files changed, 4 insertions, 3 deletions
diff --git a/completions/portinstall b/completions/portinstall
index 24051417..1ff82f5c 100644
--- a/completions/portinstall
+++ b/completions/portinstall
@@ -18,9 +18,10 @@ _portinstall()
[[ "$prev" == -l || "$prev" == -L || "$prev" == -o ]] && return 0
- COMPREPLY=( $( command grep -E "^$cur" < $indexfile | cut -d'|' -f1 ) )
- COMPREPLY2=( $( command grep -E "^[^\|]+\|$portsdir$cur" < $indexfile | \
- cut -d'|' -f2 ) )
+ COMPREPLY=( $( command grep -E "^$cur" 2>/dev/null < $indexfile | \
+ cut -d'|' -f1 ) )
+ COMPREPLY2=( $( command grep -E "^[^\|]+\|$portsdir$cur" 2>/dev/null \
+ < $indexfile | cut -d'|' -f2 ) )
COMPREPLY2=( ${COMPREPLY2[@]#$portsdir} )
COMPREPLY+=( "${COMPREPLY2[@]}" )