rename: (bash-completion) fix typo

Fixes: https://github.com/util-linux/util-linux/issues/1928
Signed-off-by: Karel Zak <kzak@redhat.com>
This commit is contained in:
Karel Zak 2022-11-28 09:47:18 +01:00
parent bd86efc9c3
commit 1325de1756

View file

@ -11,7 +11,7 @@ _rename_module()
esac
case $cur in
-*)
OPTS="--verbose --symlink --help --version --no-act --all --last --no-override --interactive"
OPTS="--verbose --symlink --help --version --no-act --all --last --no-overwrite --interactive"
COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
return 0
;;