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

Commit

Permalink
kiss: Fix install bug with busybox
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanaraps committed Jun 28, 2019
1 parent 69e31b8 commit 10fc983
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions kiss
Original file line number Diff line number Diff line change
Expand Up @@ -187,17 +187,17 @@ pkg_install() {
cd "$tar_dir" || die "Aborting due to tar error."

# Optimization: Only find the deepest directories.
find . -type d -links -3 -prune | while read -r dir; do
mkdir -p "$sys_dir/${dir#./}"
"$cac_dir/find" . -type d -links -3 -prune | while read -r dir; do
"$cac_dir/mkdir" -p "$sys_dir/${dir#./}"
done

find ./ -mindepth 1 -not -type d | while read -r file; do
"$cac_dir/find" ./ -mindepth 1 -not -type d | while read -r file; do
rpath=${file#.}

[ -z "${rpath##/etc/*}" ] && [ -f "$sys_dir${rpath%/*}/${file##*/}" ] &&
return

mv "$file" "$sys_dir${rpath%/*}"
"$cac_dir/mv" "$file" "$sys_dir${rpath%/*}"
done

"$sys_db/$name/post-install" 2>/dev/null
Expand Down Expand Up @@ -284,7 +284,7 @@ args() {
l*) pkg_list "$2" ;;
r*) pkg_remove "${2-null}" || die "Package '${2-null}' not installed." ;;
u*) pkg_updates ;;
v*) log "$kiss 0.1.9" ;;
v*) log "$kiss 0.1.10" ;;

*) log "$kiss [b|c|i|l|r|u] [pkg]" \
"build: Build a package." \
Expand Down

0 comments on commit 10fc983

Please sign in to comment.