summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2012-10-17 22:59:52 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2012-10-17 22:59:52 -0300
commitb4c8f17a6d97b63589b624d726e10d64cbd743ec (patch)
treedb5b0c243018d1fa74e44e088f0b444644f70699
parent434c2b7a7117fa52e3e087395c4042d6def904f9 (diff)
fix printf
-rwxr-xr-xchcleanup2
1 files changed, 1 insertions, 1 deletions
diff --git a/chcleanup b/chcleanup
index 5fdbc58..b5f631c 100755
--- a/chcleanup
+++ b/chcleanup
@@ -48,7 +48,7 @@ packages=($(comm -23 <(pacman -Qq | sort) \
[ ${#packages[@]} -eq 0 ] && exit 0
-msg2 "Removing %d packages: %s" ${#packages[@]} "${packages[@]}"
+msg2 "Removing %d packages" ${#packages[@]}
# Only remove leftovers, -Rcs removes too much
sudo pacman --noconfirm -Rn ${packages[@]}