mirror of
https://github.com/Llewellynvdm/Tomb.git
synced 2025-01-22 22:48:24 +00:00
Merge branch 'fix_debug'
This commit is contained in:
commit
35e1afdceb
10
src/tomb
10
src/tomb
@ -88,29 +88,29 @@ function _message say()
|
|||||||
{
|
{
|
||||||
local notice="message"
|
local notice="message"
|
||||||
[[ "$1" = "-n" ]] && shift && notice="inline"
|
[[ "$1" = "-n" ]] && shift && notice="inline"
|
||||||
(( $QUIET )) || _msg "$notice" "$1"
|
option_is_set -q || _msg "$notice" "$1"
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
alias act="_message -n"
|
alias act="_message -n"
|
||||||
function _verbose xxx()
|
function _verbose xxx()
|
||||||
{
|
{
|
||||||
(( $DEBUG )) && _msg verbose "$1"
|
option_is_set -D && _msg verbose "$1"
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
function _success yes()
|
function _success yes()
|
||||||
{
|
{
|
||||||
(( $QUIET )) || _msg success "$1"
|
option_is_set -q || _msg success "$1"
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
function _warning no()
|
function _warning no()
|
||||||
{
|
{
|
||||||
(( $QUIET )) || _msg warning "$1"
|
option_is_set -q || _msg warning "$1"
|
||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
function _failure die()
|
function _failure die()
|
||||||
{
|
{
|
||||||
typeset -i exitcode=${2:-1}
|
typeset -i exitcode=${2:-1}
|
||||||
(( $QUIET )) || _msg failure "$1"
|
option_is_set -q || _msg failure "$1"
|
||||||
exit $exitcode
|
exit $exitcode
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user