diff options
author | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2019-08-24 09:18:08 +0000 |
---|---|---|
committer | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2019-08-24 09:18:08 +0000 |
commit | 3c546af6e189f123819c4befd202e588a0a1940a (patch) | |
tree | 3d46e895905f1ce259ca7d22039986609d779093 | |
parent | 7ff1f590940cd13afd01662ac1b4b083762f73ba (diff) | |
download | cpt-3c546af6e189f123819c4befd202e588a0a1940a.tar.gz |
kiss: fix build exit
FossilOrigin-Name: 35c67c7a7a27ab1b2fe5cca2731d7b387b74d0c2a2edef88df8cad6ad67ab51b
-rwxr-xr-x | kiss | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -575,6 +575,9 @@ pkg_build() { args i "$pkg" done + # End here as this was a system update and all packages have been installed. + [ "$pkg_update" ] && return + log "Successfully built package(s)" # Turn the explicit packages into a 'list'. @@ -940,6 +943,7 @@ pkg_updates() { # Build all packages requiring an update. pkg_build "$@" + log "Updated all packages" } pkg_clean() { |