added warning

This commit is contained in:
olli 2022-12-01 10:29:21 +01:00
parent beb0535f03
commit 96dcd7e684

View File

@ -3,9 +3,13 @@
function g_runcmd {
$@ >$g_tmp/g_runcmd-output 2>&1
g_runcmd_exitcode=$?
if [ $g_runcmd_exitcode -eq 0 ]
if egrep -q -i "warn|error|fail|fatal" $g_tmp/g_runcmd-output
then
g_echo_ok "$@: $(cat $g_tmp/g_runcmd-output)"
g_echo_warn "$@: $(cat $g_tmp/g_runcmd-output)"
elif [ $g_runcmd_exitcode -eq 0 ]
then
g_echo_ok "$@: $(cat $g_tmp/g_runcmd-output)"
else
g_echo_error "$@: $(cat $g_tmp/g_runcmd-output)"
fi