From a7f6949ae64f7990975ba595b6a7aa0596131caf Mon Sep 17 00:00:00 2001 From: Alain Reguera Delgado Date: Jul 29 2011 13:25:47 +0000 Subject: Update `prepare.sh'. --- diff --git a/Scripts/Functions/Prepare/prepare.sh b/Scripts/Functions/Prepare/prepare.sh index 5554970..f75b72e 100755 --- a/Scripts/Functions/Prepare/prepare.sh +++ b/Scripts/Functions/Prepare/prepare.sh @@ -27,8 +27,8 @@ function prepare { - local PREPARE_ACTIONNAM='' - local PREPARE_ACTIONNAMS='' + local ACTIONNAM='' + local ACTIONNAMS='' # Define absolute path to directory holding prepare's # configuration files. @@ -38,7 +38,7 @@ function prepare { ${FUNCNAM}_getOptions # Execute action names based on whether they were provided or not. - if [[ $PREPARE_ACTIONNAMS == '' ]];then + if [[ $ACTIONNAMS == '' ]];then # When action names are not provided, define action names that # will take place, explicitly. @@ -51,8 +51,8 @@ function prepare { # When action names are provided, loop through them and # execute them one by one. - for PREPARE_ACTIONNAM in $PREPARE_ACTIONNAMS;do - ${FUNCNAM}_${PREPARE_ACTIONNAM} + for ACTIONNAM in $ACTIONNAMS;do + ${FUNCNAM}_${ACTIONNAM} done fi