forked from kiss-community/kiss
commit
fe7cc39026
11
kiss
11
kiss
@ -345,7 +345,7 @@ pkg_build() {
|
||||
|
||||
log "Resolving dependencies"
|
||||
|
||||
for pkg; do
|
||||
for pkg; do
|
||||
contains "$explicit" "$pkg" || {
|
||||
pkg_depends "$pkg" explicit
|
||||
|
||||
@ -361,14 +361,13 @@ pkg_build() {
|
||||
# package, remove it from the explicit list as it needs to be
|
||||
# installed as a dependency.
|
||||
for pkg; do
|
||||
# There's no better way to remove a word from a string in
|
||||
# There's no better way to remove a word from a string in
|
||||
# POSIX 'sh' sadly.
|
||||
contains "$deps" "$pkg" &&
|
||||
contains "$deps" "$pkg" &&
|
||||
explicit=$(echo "$explicit" | sed "s/ $pkg / /g")
|
||||
done
|
||||
|
||||
set -- $deps $explicit
|
||||
|
||||
log "Building: $*"
|
||||
|
||||
# Only ask for confirmation if more than one package needs to be built.
|
||||
@ -387,7 +386,7 @@ pkg_build() {
|
||||
# Install any pre-built dependencies if they exist in the binary
|
||||
# directory and are up to date.
|
||||
for pkg; do
|
||||
# Don't check for a pre-built package if it was passed
|
||||
# Don't check for a pre-built package if it was passed
|
||||
# to KISS directly.
|
||||
contains "$explicit_build" "$pkg" || {
|
||||
# Figure out the version and release.
|
||||
@ -950,7 +949,7 @@ args() {
|
||||
;;
|
||||
|
||||
v|version|-v|--version)
|
||||
printf 'kiss 0.22.0\n'
|
||||
printf 'kiss 0.30.0\n'
|
||||
;;
|
||||
|
||||
h|help|-h|--help|'')
|
||||
|
Loading…
Reference in New Issue
Block a user