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 877e0d0..3d0d869 100755 --- a/functions/arguments.sh +++ b/functions/arguments.sh @@ -58,7 +58,7 @@ Arguments () ;; --verbose) - LH_VERBOSE="enabled" + _VERBOSE="enabled" shift ;; diff --git a/functions/defaults.sh b/functions/defaults.sh index e6d71a5..281bed4 100755 --- a/functions/defaults.sh +++ b/functions/defaults.sh @@ -224,7 +224,7 @@ Set_defaults () _DEBUG="${_DEBUG:-disabled}" _FORCE="${_FORCE:-disabled}" _QUIET="${_QUIET:-disabled}" - LH_VERBOSE="${LH_VERBOSE:-disabled}" + _VERBOSE="${_VERBOSE:-disabled}" ## config/bootstrap diff --git a/functions/echo.sh b/functions/echo.sh index 56eb344..8162212 100755 --- a/functions/echo.sh +++ b/functions/echo.sh @@ -70,7 +70,7 @@ Echo_verbose () STRING="${1}" shift - if [ "${LH_VERBOSE}" = "enabled" ] + if [ "${_VERBOSE}" = "enabled" ] then if [ "${_L10N}" = "false" ] then |