Hi list, I noticed a copypasta mistake in `Completion/Redhat/Command/_dnf5` that causes tab completion to fail when the user types e.g. `dnf5 install ./<TAB>`. A trivial patch is provided below. Best regards, Christoph diff --git a/Completion/Redhat/Command/_dnf5 b/Completion/Redhat/Command/_dnf5 index e194dd5a7..9cbf451a8 100644 --- a/Completion/Redhat/Command/_dnf5 +++ b/Completion/Redhat/Command/_dnf5 @@ -38,7 +38,7 @@ _dnf5_rpm_files() { _dnf5_packages_or_rpms() { if [[ "$words[CURRENT]" = (*/*|\~*) ]]; then # if looks like a path name - _dnf_rpm_files + _dnf5_rpm_files else _dnf5_packages "$@" fi
Attachment:
signature.asc
Description: This is a digitally signed message part.