diff --git a/Scripts/Bash/Functions/Prepare/prepare_getOptions.sh b/Scripts/Bash/Functions/Prepare/prepare_getOptions.sh index 5ca1101..508450d 100755 --- a/Scripts/Bash/Functions/Prepare/prepare_getOptions.sh +++ b/Scripts/Bash/Functions/Prepare/prepare_getOptions.sh @@ -31,7 +31,7 @@ function prepare_getOptions { local ARGSS="" # Define long options we want to support. - local ARGSL="quiet,answer-yes,packages,links,images,manuals,environment" + local ARGSL="quiet,answer-yes,packages,locales,links,images,manuals,set-environment,see-environment" # Parse arguments using getopt(1) command parser. cli_parseArguments @@ -55,11 +55,26 @@ function prepare_getOptions { shift 1 ;; + --set-environment ) + ACTIONNAMS="${ACTIONNAMS} prepare_updateEnvironment" + shift 1 + ;; + + --see-environment ) + ACTIONNAMS="${ACTIONNAMS} prepare_seeEnvironment" + shift 1 + ;; + --packages ) ACTIONNAMS="${ACTIONNAMS} prepare_updatePackages" shift 1 ;; + --locales ) + ACTIONNAMS="${ACTIONNAMS} prepare_updateLocales" + shift 1 + ;; + --links ) ACTIONNAMS="${ACTIONNAMS} prepare_updateLinks" shift 1 @@ -75,11 +90,6 @@ function prepare_getOptions { shift 1 ;; - --environment ) - ACTIONNAMS="${ACTIONNAMS} prepare_getEnvars" - shift 1 - ;; - * ) break esac