Skip to content

Commit

Permalink
fix old names references
Browse files Browse the repository at this point in the history
  • Loading branch information
sighook committed Jan 9, 2025
1 parent a071221 commit c34820b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions completion/bash_completion
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# bash completion for pkgmaint utilities
# See COPYING and COPYRIGHT files for corresponding information.

_finddeps-distmeta()
_finddepsdistmeta()
{
local cur prev words cword split
_init_completion -s || return
Expand All @@ -18,9 +18,9 @@ _finddeps-distmeta()
else
_filedir
fi
} && complete -F _finddeps-distmeta finddeps-distmeta
} && complete -F _finddepsdistmeta finddepsdistmeta

_finddeps-linked()
_finddepslinked()
{
local cur prev words cword split
_init_completion -s || return
Expand All @@ -39,7 +39,7 @@ _finddeps-linked()
COMPREPLY=($(compgen \
-W '$(pkginfo -i | cut -d\ -f1)' -- $cur))
fi
} && complete -F _finddeps-linked finddeps-linked
} && complete -F _finddepslinked finddepslinked

_finddisappeared()
{
Expand Down
2 changes: 1 addition & 1 deletion man/finddepsdistmeta.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.\" finddeps-distmeta(1) manual page
.\" finddepsdistmeta(1) manual page
.\" See COPYING and COPYRIGHT files for corresponding information.
.Dd September 3, 2023
.Dt FINDDEPSDISTMETA 1
Expand Down
2 changes: 1 addition & 1 deletion man/finddepslinked.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.\" finddeps-linked(1) manual page
.\" finddepslinked(1) manual page
.\" See COPYING and COPYRIGHT files for corresponding information.
.Dd September 3, 2023
.Dt FINDDEPSLINKED 1
Expand Down

0 comments on commit c34820b

Please sign in to comment.