diff options
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | Completion/Redhat/Command/_dnf5 | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2025-09-30 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp> + + * Christoph Erhardt: 53981: Completion/Redhat/Command/_dnf5: + fix completion of local rpm files + 2025-09-29 Oliver Kiddle <opk@zsh.org> * Ryan Rotter: github #145: Completion/Unix/Command/_install: 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 |
