diff options
author | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2020-02-19 16:39:22 +0000 |
---|---|---|
committer | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2020-02-19 16:39:22 +0000 |
commit | b0fca4ece9b2fe7c4440c82b08b4ab71755615fd (patch) | |
tree | d12192e9bffbf2162afe1de28ef9bc939b0bca50 | |
parent | 19935b2c3ffa3b6d0a605e8caff028e060b3c776 (diff) | |
download | cpt-b0fca4ece9b2fe7c4440c82b08b4ab71755615fd.tar.gz |
handshake: better messages
FossilOrigin-Name: 0a7b80ba257b995aa292c75e6c08724f95f73dfeea7e3f76af811efdad641b00
-rwxr-xr-x | kiss | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1026,7 +1026,7 @@ pkg_install() { case ${sum_old:-null}${sum_sys:-null}${sum_new} in # old = Y, sys = X, new = Y ${sum_new}${sum_sys}${sum_old}) - log "Skipping $file." + log "Skipping $file" continue ;; @@ -1036,13 +1036,13 @@ pkg_install() { ${sum_old}${sum_old}${sum_old}|\ ${sum_old:-null}${sum_sys}${sum_sys}|\ ${sum_sys}${sum_old}*) - log "Installing $file." + log "Installing $file" new= ;; # All other cases. *) - log "($pkg_name) WARN: saving /$file as /$file.new" + log WARN "($pkg_name) saving /$file as /$file.new" new=.new ;; esac |