chore: resolve shell warnings

This commit is contained in:
Kyle Robbertze 2021-11-08 10:22:07 +02:00 committed by Jonas L
parent 83e904d06d
commit 022b1a2881
4 changed files with 8 additions and 6 deletions

View file

@ -110,9 +110,9 @@ function loud() {
function loudCmd() {
if [[ ${_q} -eq 0 ]]; then
verbose "$@"
eval "$@"
"$@"
else
eval "$@" > /dev/null
"$@" > /dev/null
fi
}