tazpkg diff modules/getenv @ rev 908

modules/convert: fix convert_tcz
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Tue May 24 14:51:19 2016 +0300 (2016-05-24)
parents 19fad7781af3
children 45d90da42ede
line diff
     1.1 --- a/modules/getenv	Mon Nov 30 01:45:37 2015 +0200
     1.2 +++ b/modules/getenv	Tue May 24 14:51:19 2016 +0300
     1.3 @@ -193,32 +193,4 @@
     1.4  CUR_DIR="$(pwd)"
     1.5  
     1.6  
     1.7 -# Quiet functions
     1.8 -
     1.9 -saved_action=''
    1.10 -qaction() {
    1.11 -	saved_action="$1"
    1.12 -	[ -z "$quiet" ] && action "$1";
    1.13 -}
    1.14 -
    1.15 -qstatus() {
    1.16 -	local ret_code=$?
    1.17 -	if [ -z "$quiet" ]; then
    1.18 -		test "$ret_code" -eq 0; status
    1.19 -	elif [ "$ret_code" -ne 0 ]; then
    1.20 -		# Show both action and it's status in the silent mode if error
    1.21 -		action "$saved_action"
    1.22 -		test 1 -eq 2; status
    1.23 -	fi
    1.24 -}
    1.25 -
    1.26 -qtitle() {
    1.27 -	[ -z "$quiet" ] && title "$@";
    1.28 -}
    1.29 -
    1.30 -qfooter() {
    1.31 -	[ -z "$quiet" ] && footer "$@";
    1.32 -}
    1.33 -
    1.34 -
    1.35  debug '-- end getenv --'