From d1e926ddab01b92d4c600da9f9082e527e2f180e Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Sun, 24 May 2020 17:00:56 +0300 Subject: [PATCH] kiss: Drop printing strip information for the 10th time --- kiss | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kiss b/kiss index db0f24c..8508fec 100755 --- a/kiss +++ b/kiss @@ -463,8 +463,7 @@ pkg_strip() { *) continue esac - strip "--strip-$strip_flag" -R .comment -R .note "$file" && - printf 'stripped %10s %s\n' "($strip_flag)" "${file##*/}" + strip "--strip-$strip_flag" -R .comment -R .note "$file" done 2>/dev/null ||: }