diff options
author | merakor <cem@ckyln.com> | 2020-04-02 11:13:41 +0000 |
---|---|---|
committer | merakor <cem@ckyln.com> | 2020-04-02 11:13:41 +0000 |
commit | 37fded56915dd0ec278fb06a701612f09751489c (patch) | |
tree | 307fcbf2fa4fb9ee2a9b6dcdaf8ffdad60d0901b | |
parent | 5144fb528ec968e1c519899c4eb46ad06b76983e (diff) | |
download | cpt-37fded56915dd0ec278fb06a701612f09751489c.tar.gz |
kiss: also check symlinks for packages
FossilOrigin-Name: 31fdf094b93b84d896abe3bbccb846b585b88c69f68359367d1b1dceb5192bc1
-rwxr-xr-x | kiss | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -135,7 +135,7 @@ pkg_find() { # See [1] at top of script. # shellcheck disable=2046,2086 set -- $(find "$@" "$sys_db/." \( ! -name . -prune \) \ - ! -name .git -a -name "$query" -type d) + ! -name .git -a -name "$query" \( -type d -o -type l \)) # A package may also not be found due to a repository not being # readable by the current user. Either way, we need to die here. |