mirror of
https://gitlab.com/niansa/magicwrap.git
synced 2025-03-06 20:48:30 +01:00
7 lines
107 B
Bash
7 lines
107 B
Bash
debugout () {
|
|
test "$mwdebug" = "true" &&
|
|
echo "$@"
|
|
}
|
|
errout () {
|
|
echo "$@" 1>&2
|
|
}
|