1
0
mirror of https://codeberg.org/kiss-community/kiss synced 2024-12-23 23:50:05 -07:00

Merge branch 'master' of github.com:kisslinux/kiss into master

This commit is contained in:
Dylan Araps 2020-09-14 14:34:44 +03:00
commit cb3d826bf0

10
kiss
View File

@ -131,14 +131,14 @@ pkg_find() {
set --
# shellcheck disable=2086
# Globbing disabled for KISS_PATH word-splitting
for path in $KISS_PATH "${what:-"$sys_db"}"; do
set +f
for path2 in "$path/"$query; do
test "${what:--d}" "$path2" || continue
set -f -- "$@" "$path2"
# Globbing enabled for search.
for path2 in "$path/"${query%%/*}; do
test "${what:--d}" "$path2" &&
set -f -- "$@" "$path2"
done
done