From 651e5a3ea7b28f4134f119ce5439aac6ac369b9e Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Fri, 23 Jul 2021 11:22:19 +0300 Subject: [PATCH] kiss: only show ordering message if more than one package will be operated on --- kiss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/kiss b/kiss index b7b9362..fee99b0 100755 --- a/kiss +++ b/kiss @@ -572,7 +572,9 @@ pkg_order() { # pre-built tarballs if this is to be called from 'kiss i'. unset order redro deps - log "Ordering arguments list based on dependence" + case $2 in *?*) + log "Ordering arguments list based on dependence" + esac for pkg do case $pkg in /*@*.tar.*) deps="$deps $pkg" ;;