Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
kiss: don't find parents
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanaraps committed Nov 13, 2019
1 parent 2f88c47 commit a81c461
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions kiss
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ pkg_find() {
# from the repositories.
# See [1] at top of script.
# shellcheck disable=2046,2086
set -- $(IFS=:; find $KISS_PATH "$sys_db" -maxdepth 1 -name "$1")
set -- $(IFS=:
find $KISS_PATH "$sys_db" -mindepth 1 -maxdepth 1 -name "$1")

# 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.
Expand Down Expand Up @@ -1027,7 +1028,7 @@ args() {
;;

v|version|-v|--version)
log kiss 0.53.5
log kiss 0.53.6
;;

h|help|-h|--help|'')
Expand Down

0 comments on commit a81c461

Please sign in to comment.