diff options
author | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2019-09-15 07:42:17 +0000 |
---|---|---|
committer | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2019-09-15 07:42:17 +0000 |
commit | f146836f108f4ceca92502467a7ec7ea4570aa86 (patch) | |
tree | 6845a30764b43b6f10c72f577d09e9a4545dc96b | |
parent | 9deed25d2efe6b698c976329690bde72f5fd8dff (diff) | |
download | cpt-f146836f108f4ceca92502467a7ec7ea4570aa86.tar.gz |
version: bump
FossilOrigin-Name: 0cd9343264634d8112955afabee2fb45281fbb9e85b9fe611368361712328288
-rwxr-xr-x | kiss | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -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|'') |