Do not repeat completion

This commit is contained in:
Price Hiller 2022-01-01 02:32:01 -06:00
parent cb2068c901
commit e886442e73

View File

@ -1,9 +1,11 @@
#!/bin/bash
_7D2D_manage_completions()
{
_7D2D_manage_completions() {
if [ "${#COMP_WORDS[@]}" != "2" ]; then
return
fi
COMPREPLY=($(compgen -W "backup install kill list start update" "${COMP_WORDS[1]}"))
}
complete -F _7D2D_manage_completions 7D2D-Manage