forked from kiss-community/kiss
kiss: nitpick
This commit is contained in:
parent
8210e660a1
commit
c57210a71b
6
kiss
6
kiss
@ -914,13 +914,10 @@ pkg_install() {
|
|||||||
# Extract the tar-ball to catch any errors before installation begins.
|
# Extract the tar-ball to catch any errors before installation begins.
|
||||||
decompress "$tar_file" | "$tar" pxf - -C "$tar_dir/$pkg_name"
|
decompress "$tar_file" | "$tar" pxf - -C "$tar_dir/$pkg_name"
|
||||||
|
|
||||||
log "$pkg_name" "Checking that all dependencies are installed"
|
|
||||||
|
|
||||||
[ -f "$tar_dir/$pkg_name/$pkg_db/$pkg_name/manifest" ] ||
|
[ -f "$tar_dir/$pkg_name/$pkg_db/$pkg_name/manifest" ] ||
|
||||||
die "'${tar_file##*/}' is not a valid KISS package"
|
die "'${tar_file##*/}' is not a valid KISS package"
|
||||||
|
|
||||||
# Make sure that all run-time dependencies are installed prior to
|
log "$pkg_name" "Checking that all dependencies are installed"; {
|
||||||
# installing the package.
|
|
||||||
[ -f "$tar_dir/$pkg_name/$pkg_db/$pkg_name/depends" ] &&
|
[ -f "$tar_dir/$pkg_name/$pkg_db/$pkg_name/depends" ] &&
|
||||||
[ -z "$KISS_FORCE" ] &&
|
[ -z "$KISS_FORCE" ] &&
|
||||||
while read -r dep dep_type || [ "$dep" ]; do
|
while read -r dep dep_type || [ "$dep" ]; do
|
||||||
@ -930,6 +927,7 @@ pkg_install() {
|
|||||||
done < "$tar_dir/$pkg_name/$pkg_db/$pkg_name/depends"
|
done < "$tar_dir/$pkg_name/$pkg_db/$pkg_name/depends"
|
||||||
|
|
||||||
[ "$install_dep" ] && die "$1" "Package requires ${install_dep%, }"
|
[ "$install_dep" ] && die "$1" "Package requires ${install_dep%, }"
|
||||||
|
}
|
||||||
|
|
||||||
run_hook pre-install "$pkg_name" "$tar_dir/$pkg_name"
|
run_hook pre-install "$pkg_name" "$tar_dir/$pkg_name"
|
||||||
pkg_conflicts "$pkg_name"
|
pkg_conflicts "$pkg_name"
|
||||||
|
Loading…
Reference in New Issue
Block a user