From dfb2e3b400c42f3a2f87c104973459a86055b7ce Mon Sep 17 00:00:00 2001 From: Alain Reguera Delgado Date: Oct 05 2012 22:32:15 +0000 Subject: Update `Functions/Prepare/prepare_getOptions.sh' file. --- diff --git a/Scripts/Bash/Functions/Prepare/prepare_getOptions.sh b/Scripts/Bash/Functions/Prepare/prepare_getOptions.sh index 101897d..82ae0d5 100755 --- a/Scripts/Bash/Functions/Prepare/prepare_getOptions.sh +++ b/Scripts/Bash/Functions/Prepare/prepare_getOptions.sh @@ -28,10 +28,10 @@ function prepare_getOptions { # Define short options we want to support. - local ARGSS="" + local ARGSS="v" # Define long options we want to support. - local ARGSL="quiet,answer-yes,packages,locales,links,images,manuals,set-environment,see-environment,sync-changes" + local ARGSL="verbose,answer-yes,packages,locales,links,images,manuals,set-environment,see-environment,sync-changes" # Redefine ARGUMENTS using getopt(1) command parser. cli_parseArguments @@ -44,8 +44,8 @@ function prepare_getOptions { while true; do case "$1" in - --quiet ) - FLAG_QUIET="true" + -v | --verbose ) + FLAG_VERBOSE="true" shift 1 ;;