diff --git a/Scripts/Functions/Render/render_doPostActions.sh b/Scripts/Functions/Render/render_doPostActions.sh index e890439..43e4389 100755 --- a/Scripts/Functions/Render/render_doPostActions.sh +++ b/Scripts/Functions/Render/render_doPostActions.sh @@ -34,15 +34,7 @@ function render_doPostActions { # Execute common post-rendition actions. for ACTION in "${POSTACTIONS[@]}"; do - - case "${ACTION}" in - - groupSimilarFiles:* ) - render_groupSimilarFiles - ;; - - esac - + ${FUNCNAM}_$(echo "$ACTION" | cut -d: -f1) done }