kiss: Remove func subshell use

This commit is contained in:
Dylan Araps 2020-04-22 09:18:12 +03:00
parent c8029d6a71
commit 6e3064d0f8
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
1 changed files with 2 additions and 2 deletions

4
kiss
View File

@ -813,7 +813,7 @@ pkg_swap() {
sed -i "$(esc "$PWD/$alt" "$2")" "../installed/$1/manifest"
}
pkg_install_files() (
pkg_install_files() {
awk '{L[n++]=$0}END{while(n--)print L[n]}' "$2/$pkg_db/${2##*/}/manifest" |
while read -r line; do
@ -826,7 +826,7 @@ pkg_install_files() (
chown -h root:root "$line"
done
)
}
pkg_etc() {
[ -d "$tar_dir/$pkg_name/etc" ] || return 0