forked from kiss-community/kiss
kiss: fix kiss install tarball
This commit is contained in:
parent
aeb4ba6fb6
commit
74645120ed
8
kiss
8
kiss
@ -895,7 +895,13 @@ args() {
|
|||||||
root_check
|
root_check
|
||||||
|
|
||||||
# Create a list of each package's dependencies.
|
# Create a list of each package's dependencies.
|
||||||
for pkg; do pkg_depends "$pkg"; done
|
for pkg; do
|
||||||
|
if [ "${pkg%%*.tar.gz}" ]; then
|
||||||
|
pkg_depends "$pkg"
|
||||||
|
else
|
||||||
|
missing_deps="$missing_deps $pkg "
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
# Filter the list, only including explicit packages.
|
# Filter the list, only including explicit packages.
|
||||||
for pkg in $missing_deps; do
|
for pkg in $missing_deps; do
|
||||||
|
Loading…
Reference in New Issue
Block a user