diff options
author | Lyndon Brown <jnqnfe@gmail.com> | 2020-03-01 03:00:29 +0000 |
---|---|---|
committer | Luca Boccassi <bluca@debian.org> | 2020-03-05 21:04:23 +0000 |
commit | 73c1100c01da680a2d9f57aa26e48e6dc808fdf6 (patch) | |
tree | 6b7bb4242893660a374ee346b737abfd3b7e7823 /functions | |
parent | 06f632efdfc9f94121a5662af9b8e732b25f6f86 (diff) | |
download | vyos-live-build-73c1100c01da680a2d9f57aa26e48e6dc808fdf6.tar.gz vyos-live-build-73c1100c01da680a2d9f57aa26e48e6dc808fdf6.zip |
echo: purge unused *_running echo helpers
Partial fix for #952880
Gbp-Dch: Short
Diffstat (limited to 'functions')
-rwxr-xr-x | functions/echo.sh | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/functions/echo.sh b/functions/echo.sh index 07dcaf775..c11797a12 100755 --- a/functions/echo.sh +++ b/functions/echo.sh @@ -27,24 +27,6 @@ Echo_debug () fi } -Echo_debug_running () -{ - if [ "${_DEBUG}" = "true" ] - then - STRING="${1}" - shift - - printf "D: ${STRING}" "${@}" >&1 - - if [ "${_COLOR}" = "false" ] - then - printf "..." >&1 - else - printf "... ${YELLOW}${BLINK}running${NO_COLOR}" >&1 - fi - fi -} - Echo_error () { STRING="${1}" @@ -78,31 +60,6 @@ Echo_message () fi } -Echo_message_running () -{ - if [ "${_QUIET}" != "true" ] - then - STRING="${1}" - shift - - if [ "${_COLOR}" = "false" ] - then - printf "P:" >&1 - else - printf "${WHITE}P${NO_COLOR}:" >&1 - fi - - printf " ${STRING}" "${@}" >&1 - - if [ "${_COLOR}" = "true" ] - then - printf "... ${YELLOW}${BLINK}running${NO_COLOR}" >&1 - else - printf "..." >&1 - fi - fi -} - Echo_verbose () { if [ "${_VERBOSE}" = "true" ] @@ -114,24 +71,6 @@ Echo_verbose () fi } -Echo_verbose_running () -{ - if [ "${_VERBOSE}" != "true" ] - then - STRING="${1}" - shift - - printf "I: ${STRING}" "${@}" >&1 - - if [ "${_COLOR}" = "true" ] - then - printf "... ${YELLOW}${BLINK}running${NO_COLOR}" >&1 - else - printf "..." >&1 - fi - fi -} - Echo_warning () { STRING="${1}" |