diff --git a/Scripts/Bash/Functions/Render/Config/Identity/Brands/render.conf.sh b/Scripts/Bash/Functions/Render/Config/Identity/Brands/render.conf.sh index 1540635..69a543b 100755 --- a/Scripts/Bash/Functions/Render/Config/Identity/Brands/render.conf.sh +++ b/Scripts/Bash/Functions/Render/Config/Identity/Brands/render.conf.sh @@ -32,7 +32,6 @@ function render_loadConfig { # Define rendering actions. ACTIONS[0]='BASE:renderImage' ACTIONS[1]='POST:renderBrands: tif xpm pdf ppm' - ACTIONS[2]='POST:groupByType: png tif xpm pdf ppm' # Define matching list. MATCHINGLIST="\ diff --git a/Scripts/Bash/Functions/Render/render_doIdentityImageBrands.sh b/Scripts/Bash/Functions/Render/render_doIdentityImageBrands.sh index d501d87..4bc7ba7 100644 --- a/Scripts/Bash/Functions/Render/render_doIdentityImageBrands.sh +++ b/Scripts/Bash/Functions/Render/render_doIdentityImageBrands.sh @@ -51,30 +51,4 @@ function render_doIdentityImageBrands { ${FILE}.png \ ${FILE}-emboss.png - # Move logo copy in 2 colors into its final location. This action - # complements groupByType post-rendering action. - SOURCEFILE=$FILE.xbm - TARGETDIR=$(dirname $FILE)/Xbm - TARGETFILE=$TARGETDIR/$(basename $SOURCEFILE) - # --- centos-art path $SOURCEFILE --move-to=$TARGETDIR - cli_printMessage "$TARGETFILE" 'AsMovedToLine' - cli_checkFiles $TARGETDIR 'd' - if [[ $? -ne 0 ]];then - mkdir -p $TARGETDIR - fi - mv ${SOURCEFILE} --target-directory=$TARGETDIR --force - - # Move logo copy with emboss effect into its final location. This - # action complements groupByType post-rendering action. - SOURCEFILE=${FILE}-emboss.png - TARGETDIR=$(dirname $FILE)/Png - TARGETFILE=$TARGETDIR/$(basename $SOURCEFILE) - # --- centos-art path $SOURCEFILE --move-to=$TARGETDIR - cli_printMessage "$TARGETFILE" 'AsMovedToLine' - cli_checkFiles $TARGETDIR 'd' - if [[ $? -ne 0 ]];then - mkdir -p $TARGETDIR - fi - mv ${SOURCEFILE} --target-directory=$TARGETDIR --force - }