diff --git a/kiss b/kiss index cdab1fd..f2cf6cb 100755 --- a/kiss +++ b/kiss @@ -1070,12 +1070,10 @@ pkg_updates() { # Display a tick if signing is enabled for this # repository. case $(git config merge.verifySignatures) in - true) signed='[signed ✓]' ;; - *) signed= ;; + true) log "$PWD" "[signed ✓] " ;; + *) log "$PWD" " " ;; esac - log "$PWD" "$signed " - if [ -w "$PWD" ] && [ "$(id -u)" != 0 ]; then git pull @@ -1120,6 +1118,9 @@ pkg_updates() { } done + # Disable globbing. + set -f + # If the package manager has an update, handle it first. contains "$outdated" kiss && { log "Detected package manager update" @@ -1136,9 +1137,6 @@ pkg_updates() { exit 0 } - # Disable globbing. - set -f - # End here if no packages have an update. [ "$outdated" ] || { log "Everything is up to date"