From d3232646688a75d59aefb08a83b5e70e520fe9fe Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Sun, 15 Sep 2019 10:42:18 +0300 Subject: [PATCH] version: bump --- kiss | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/kiss b/kiss index ab66e23..1f5c579 100755 --- a/kiss +++ b/kiss @@ -345,7 +345,7 @@ pkg_build() { log "Resolving dependencies" - for pkg; do + for pkg; do contains "$explicit" "$pkg" || { pkg_depends "$pkg" explicit @@ -361,13 +361,15 @@ 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 + echo "$explicit_build" + echo "$deps - $explicit" log "Building: $*" @@ -387,7 +389,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 +952,7 @@ args() { ;; v|version|-v|--version) - printf 'kiss 0.22.0\n' + printf 'kiss 0.30.0\n' ;; h|help|-h|--help|'')