From 2174061a4bb6b07c619df45265fe359b843f3d95 Mon Sep 17 00:00:00 2001 From: germedeb Date: Fri, 4 Feb 2022 23:54:18 -0300 Subject: [PATCH] removed actions-sym folder from icon count script --- tasks/icon-count.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/icon-count.sh b/tasks/icon-count.sh index 3192eb0..2d96745 100755 --- a/tasks/icon-count.sh +++ b/tasks/icon-count.sh @@ -14,13 +14,13 @@ function iconcount_get_numbers () { # get the numbers - icons_total="$(find icons/apps/ icons/places/ icons/devices/ icons/categories/ icons/status/ icons/mimetypes/ icons/actions/ icons/actions-sym/ icons/animations/ -mindepth 1 -maxdepth 1 -not -path '*/\.*' | wc -l)" + icons_total="$(find icons/apps/ icons/places/ icons/devices/ icons/categories/ icons/status/ icons/mimetypes/ icons/actions/ icons/animations/ -mindepth 1 -maxdepth 1 -not -path '*/\.*' | wc -l)" # apps icons_apps="$(find icons/apps/ -mindepth 1 -maxdepth 1 -not -path '*/\.*' | wc -l)" # actions - icons_actions="$(find icons/actions/ icons/actions-sym/ -mindepth 1 -maxdepth 1 -not -path '*/\.*' | wc -l)" + icons_actions="$(find icons/actions/ -mindepth 1 -maxdepth 1 -not -path '*/\.*' | wc -l)" # categories icons_cate="$(find icons/categories/ -mindepth 1 -maxdepth 1 -not -path '*/\.*' | wc -l)"