kiss: Fix GNU find bug

This commit is contained in:
Dylan Araps 2020-02-10 11:49:31 +02:00
parent 934fa076ed
commit e2d233fdc8
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
1 changed files with 4 additions and 2 deletions

6
kiss
View File

@ -951,7 +951,9 @@ pkg_install() {
cd "$tar_dir/$pkg_name"
# Create all directories beforehand.
find etc -type d -exec mkdir -p /{} +
find etc -type d | while read -r dir; do
mkdir -p "$KISS_ROOT/$dir"
done
# Handle files in /etc/ based on a 3-way checksum check.
find etc -type f | while read -r file; do
@ -1287,7 +1289,7 @@ args() {
l|list) pkg_list "$@" ;;
u|update) pkg_updates ;;
s|search) for pkg; do pkg_find "$pkg" all; done ;;
v|version) log kiss 1.4.1 ;;
v|version) log kiss 1.4.2 ;;
h|help|-h|--help|'')
log 'kiss [a|b|c|i|l|r|s|u|v] [pkg] [pkg] [pkg]'