From d95c8e76f74d1db633df48fae8fa598ad6637e99 Mon Sep 17 00:00:00 2001 From: germedeb Date: Mon, 13 Jun 2022 22:18:16 -0300 Subject: [PATCH] modified "exporting" to "exported:" --- tasks/export/export-actions.sh | 3 ++- tasks/export/export-animations.sh | 3 ++- tasks/export/export-apps.sh | 4 ++-- tasks/export/export-categories.sh | 4 ++-- tasks/export/export-devices.sh | 4 ++-- tasks/export/export-mimetypes.sh | 4 ++-- tasks/export/export-places.sh | 4 ++-- tasks/export/export-status.sh | 4 ++-- 8 files changed, 16 insertions(+), 14 deletions(-) diff --git a/tasks/export/export-actions.sh b/tasks/export/export-actions.sh index c332704..c7e946c 100755 --- a/tasks/export/export-actions.sh +++ b/tasks/export/export-actions.sh @@ -5,7 +5,6 @@ do if [[ -f "${SVG}" ]]; then N=$(basename ${SVG} .svg) - echo exporting ${SVG} parallel ::: \ "inkscape -w 8 -h 8 -o _build/aleta/actions/8/${N}.png ${SVG} >/dev/null 2>&1" \ "inkscape -w 16 -h 16 -o _build/aleta/actions/16/${N}.png ${SVG} >/dev/null 2>&1" \ @@ -19,5 +18,7 @@ do "inkscape -w 256 -h 256 -o _build/aleta/actions/256/${N}.png ${SVG} >/dev/null 2>&1" mv ${SVG} _build/icons-e/actions/ + + echo exported: ${SVG} fi done diff --git a/tasks/export/export-animations.sh b/tasks/export/export-animations.sh index 89ab335..db011a2 100755 --- a/tasks/export/export-animations.sh +++ b/tasks/export/export-animations.sh @@ -5,7 +5,6 @@ do if [[ -f "${SVG}" ]]; then N=$(basename ${SVG} .svg) - echo exporting ${SVG} parallel ::: \ "inkscape -w 8 -h 8 -o _build/aleta/animations/8/${N}.png ${SVG} >/dev/null 2>&1" \ "inkscape -w 16 -h 16 -o _build/aleta/animations/16/${N}.png ${SVG} >/dev/null 2>&1" \ @@ -17,5 +16,7 @@ do "inkscape -w 128 -h 128 -o _build/aleta/animations/128/${N}.png ${SVG} >/dev/null 2>&1" mv ${SVG} _build/icons-e/animations/ + + echo exported: ${SVG} fi done diff --git a/tasks/export/export-apps.sh b/tasks/export/export-apps.sh index f57973b..3f8fc7c 100755 --- a/tasks/export/export-apps.sh +++ b/tasks/export/export-apps.sh @@ -5,8 +5,6 @@ do if [[ -f "${SVG}" ]]; then N=$(basename ${SVG} .svg) - echo exporting ${SVG} - parallel ::: \ "inkscape -w 8 -h 8 -o _build/aleta/apps/8/${N}.png ${SVG} >/dev/null 2>&1" \ "inkscape -w 16 -h 16 -o _build/aleta/apps/16/${N}.png ${SVG} >/dev/null 2>&1" \ @@ -18,5 +16,7 @@ do "inkscape -w 128 -h 128 -o _build/aleta/apps/128/${N}.png ${SVG} >/dev/null 2>&1" \ "inkscape -w 256 -h 256 -o _build/aleta/apps/256/${N}.png ${SVG} >/dev/null 2>&1" mv ${SVG} _build/icons-e/apps/ + + echo exported: ${SVG} fi done diff --git a/tasks/export/export-categories.sh b/tasks/export/export-categories.sh index 5ca89ff..fadb911 100755 --- a/tasks/export/export-categories.sh +++ b/tasks/export/export-categories.sh @@ -5,8 +5,6 @@ do if [[ -f "${SVG}" ]]; then N=$(basename ${SVG} .svg) - echo exporting ${SVG} - parallel ::: \ "inkscape -w 8 -h 8 -o _build/aleta/categories/8/${N}.png ${SVG} >/dev/null 2>&1" \ "inkscape -w 16 -h 16 -o _build/aleta/categories/16/${N}.png ${SVG} >/dev/null 2>&1" \ @@ -19,5 +17,7 @@ do "inkscape -w 128 -h 128 -o _build/aleta/categories/128/${N}.png ${SVG} >/dev/null 2>&1" mv ${SVG} _build/icons-e/categories/ + + echo exported: ${SVG} fi done diff --git a/tasks/export/export-devices.sh b/tasks/export/export-devices.sh index d40ce9b..83573ab 100755 --- a/tasks/export/export-devices.sh +++ b/tasks/export/export-devices.sh @@ -5,8 +5,6 @@ do if [[ -f "${SVG}" ]]; then N=$(basename ${SVG} .svg) - echo exporting ${SVG} - parallel ::: \ "inkscape -w 16 -h 16 -o _build/aleta/devices/16/${N}.png ${SVG} >/dev/null 2>&1" \ "inkscape -w 24 -h 24 -o _build/aleta/devices/24/${N}.png ${SVG} >/dev/null 2>&1" \ @@ -16,5 +14,7 @@ do "inkscape -w 96 -h 96 -o _build/aleta/devices/96/${N}.png ${SVG} >/dev/null 2>&1" mv ${SVG} _build/icons-e/devices/ + + echo exported: ${SVG} fi done diff --git a/tasks/export/export-mimetypes.sh b/tasks/export/export-mimetypes.sh index 441d0aa..f613e33 100755 --- a/tasks/export/export-mimetypes.sh +++ b/tasks/export/export-mimetypes.sh @@ -5,8 +5,6 @@ do if [[ -f "${SVG}" ]]; then N=$(basename ${SVG} .svg) - echo exporting ${SVG} - parallel ::: \ "inkscape -w 8 -h 8 -o _build/aleta/mimetypes/8/${N}.png ${SVG} >/dev/null 2>&1" \ "inkscape -w 16 -h 16 -o _build/aleta/mimetypes/16/${N}.png ${SVG} >/dev/null 2>&1" \ @@ -20,5 +18,7 @@ do "inkscape -w 256 -h 256 -o _build/aleta/mimetypes/256/${N}.png ${SVG} >/dev/null 2>&1" mv ${SVG} _build/icons-e/mimetypes/ + + echo exported: ${SVG} fi done diff --git a/tasks/export/export-places.sh b/tasks/export/export-places.sh index 699201d..18af47b 100755 --- a/tasks/export/export-places.sh +++ b/tasks/export/export-places.sh @@ -5,8 +5,6 @@ do if [[ -f "${SVG}" ]]; then N=$(basename ${SVG} .svg) - echo exporting ${SVG} - parallel ::: \ "inkscape -w 8 -h 8 -o _build/aleta/places/8/${N}.png ${SVG} >/dev/null 2>&1" \ "inkscape -w 16 -h 16 -o _build/aleta/places/16/${N}.png ${SVG} >/dev/null 2>&1" \ @@ -19,5 +17,7 @@ do "inkscape -w 256 -h 256 -o _build/aleta/places/256/${N}.png ${SVG} >/dev/null 2>&1" mv ${SVG} _build/icons-e/places/ + + echo exported: ${SVG} fi done diff --git a/tasks/export/export-status.sh b/tasks/export/export-status.sh index 78c8362..e2fd51b 100755 --- a/tasks/export/export-status.sh +++ b/tasks/export/export-status.sh @@ -5,8 +5,6 @@ do if [[ -f "${SVG}" ]]; then N=$(basename ${SVG} .svg) - echo exporting ${SVG} - parallel ::: \ "inkscape -w 8 -h 8 -o _build/aleta/status/8/${N}.png ${SVG} >/dev/null 2>&1" \ "inkscape -w 16 -h 16 -o _build/aleta/status/16/${N}.png ${SVG} >/dev/null 2>&1" \ @@ -19,5 +17,7 @@ do "inkscape -w 256 -h 256 -o _build/aleta/status/256/${N}.png ${SVG} >/dev/null 2>&1" mv ${SVG} _build/icons-e/status/ + + echo exported: ${SVG} fi done