diff options
Diffstat (limited to 'functions')
| -rwxr-xr-x | functions/arguments.sh | 2 | ||||
| -rwxr-xr-x | functions/defaults.sh | 2 | ||||
| -rwxr-xr-x | functions/echo.sh | 2 | 
3 files changed, 3 insertions, 3 deletions
diff --git a/functions/arguments.sh b/functions/arguments.sh index 80851d37e..877e0d071 100755 --- a/functions/arguments.sh +++ b/functions/arguments.sh @@ -48,7 +48,7 @@ Arguments ()  				;;  			--quiet) -				LH_QUIET="enabled" +				_QUIET="enabled"  				shift  				;; diff --git a/functions/defaults.sh b/functions/defaults.sh index 97917ad33..e6d71a502 100755 --- a/functions/defaults.sh +++ b/functions/defaults.sh @@ -223,7 +223,7 @@ Set_defaults ()  	LH_BREAKPOINTS="${LH_BREAKPOINTS:-disabled}"  	_DEBUG="${_DEBUG:-disabled}"  	_FORCE="${_FORCE:-disabled}" -	LH_QUIET="${LH_QUIET:-disabled}" +	_QUIET="${_QUIET:-disabled}"  	LH_VERBOSE="${LH_VERBOSE:-disabled}"  	## config/bootstrap diff --git a/functions/echo.sh b/functions/echo.sh index d9a699d88..56eb344f5 100755 --- a/functions/echo.sh +++ b/functions/echo.sh @@ -54,7 +54,7 @@ Echo_message ()  	STRING="${1}"  	shift -	if [ "${LH_QUIET}" != "enabled" ] +	if [ "${_QUIET}" != "enabled" ]  	then  		if [ "${_L10N}" = "false" ]  		then  | 
