summaryrefslogtreecommitdiff
path: root/completions/avctrl
diff options
context:
space:
mode:
Diffstat (limited to 'completions/avctrl')
-rw-r--r--completions/avctrl4
1 files changed, 2 insertions, 2 deletions
diff --git a/completions/avctrl b/completions/avctrl
index acd9aeb7..2ef499f3 100644
--- a/completions/avctrl
+++ b/completions/avctrl
@@ -6,12 +6,12 @@ _avctrl()
_init_completion || return
if [[ "$cur" == -* ]]; then
- COMPREPLY=( $( compgen -W '--help --quiet' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W '--help --quiet' -- "$cur") )
else
local args
_count_args
if [[ $args -eq 1 ]]; then
- COMPREPLY=( $( compgen -W 'discover switch' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W 'discover switch' -- "$cur") )
fi
fi
} &&