diff --git a/Scripts/Bash/Cli/Functions/Identity/identity_render.sh b/Scripts/Bash/Cli/Functions/Identity/identity_render.sh index 01f43d5..bb174fc 100755 --- a/Scripts/Bash/Cli/Functions/Identity/identity_render.sh +++ b/Scripts/Bash/Cli/Functions/Identity/identity_render.sh @@ -57,7 +57,7 @@ function identity_render { # Verify post-rendition actions passed from command-line and add # them, if any, to post-rendition list of actions. if [[ $FLAG_GROUPED_BY != '' ]];then - POSTACTIONS[((++${#POSTACTIONS[*]}))]="groupByFormat:${FLAG_GROUPED_BY}" + POSTACTIONS[((++${#POSTACTIONS[*]}))]="groupSimilarFiles:${FLAG_GROUPED_BY}" fi # Define the extension pattern for template files. This is the diff --git a/Scripts/Bash/Cli/Functions/Identity/identity_renderPostActions.sh b/Scripts/Bash/Cli/Functions/Identity/identity_renderPostActions.sh index bff2fd2..2388b83 100755 --- a/Scripts/Bash/Cli/Functions/Identity/identity_renderPostActions.sh +++ b/Scripts/Bash/Cli/Functions/Identity/identity_renderPostActions.sh @@ -32,7 +32,7 @@ function identity_renderPostActions { case "${ACTION}" in - groupByFormat:* ) + groupSimilarFiles:* ) identity_groupSimilarFiles ;; diff --git a/Scripts/Bash/Cli/Functions/Identity/identity_renderSvgPostActions.sh b/Scripts/Bash/Cli/Functions/Identity/identity_renderSvgPostActions.sh index d4fb302..1b1acaa 100644 --- a/Scripts/Bash/Cli/Functions/Identity/identity_renderSvgPostActions.sh +++ b/Scripts/Bash/Cli/Functions/Identity/identity_renderSvgPostActions.sh @@ -41,7 +41,7 @@ function identity_renderSvgPostActions { # repository. if [[ $TEMPLATE =~ "Distro/Backgrounds/.+\.svg$" ]];then POSTACTIONS[((++${#POSTACTIONS[*]}))]='convertPngTo: jpg' - POSTACTIONS[((++${#POSTACTIONS[*]}))]='groupByFormat: png jpg' + POSTACTIONS[((++${#POSTACTIONS[*]}))]='groupSimilarFiles: png jpg' elif [[ $TEMPLATE =~ "Distro/$(cli_getPathComponent '--release-pattern')/Syslinux/.+\.svg$" ]];then POSTACTIONS[((++${#POSTACTIONS[*]}))]='renderSyslinux' POSTACTIONS[((++${#POSTACTIONS[*]}))]='renderSyslinux:-floyd'