change helper functions to match other script for consistency

This commit is contained in:
Helmut K. C. Tessarek 2019-07-07 20:47:21 -04:00
parent 1f292a1733
commit cbf005d238
No known key found for this signature in database
GPG Key ID: BE0985349D44DD00

6
jnrmor
View File

@ -153,19 +153,19 @@ fi
function debug {
if [ "$dflag" == "1" ]; then
echo "[debug] $1"
echo "[debug] $@"
fi
}
function info {
if [ "$qflag" != "1" ]; then
echo "$1"
echo "$@"
fi
}
function info_n {
if [ "$qflag" != "1" ]; then
echo -n "$1"
echo -n "$@"
fi
}