diff --git a/Scripts/Functions/Render/render_doPostActions.sh b/Scripts/Functions/Render/render_doPostActions.sh index d77b9d3..39bcc23 100755 --- a/Scripts/Functions/Render/render_doPostActions.sh +++ b/Scripts/Functions/Render/render_doPostActions.sh @@ -1,16 +1,14 @@ #!/bin/bash # -# render_doPostActions.sh -- This function provides post-rendition -# actions to base-rendition output. Post-rendition actions take place -# through any command you specify in the `--post-rendition' option -# (e.g., the mogrify command from ImageMagick tool set. +# render_doPostActions.sh -- This function standardizes the way +# post-rendition actions are applied to base-rendition output. # # Copyright (C) 2009, 2010, 2011 The CentOS Project # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or (at -# your option) any later version. +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of @@ -27,20 +25,20 @@ function render_doPostActions { - # Define base-rendition output file extension. + # Define the file extension of base-rendition output. local EXTENSION=$(render_getConfigOption "$ACTION" '2') - # Define command string. + # Define the command string. local COMMAND=$(render_getConfigOption "$ACTION" '3-') - # Verify base-rendition output. + # Verify the file fullname of base-rendition output. cli_checkFiles ${FILE}.${EXTENSION} - # Execute command to base-rendition output. + # Execute the command string on base-rendition output. eval $COMMAND ${FILE}.${EXTENSION} - # Be sure the command was executed correctly. Otherwise stop - # script execution. + # Be sure the command string was executed correctly. Otherwise + # stop the script execution. if [[ $? -ne 0 ]];then exit fi