Merge pull request #143 from versity/zab/t_quiet_appends

t_quiet appends command output
This commit is contained in:
Zach Brown
2023-10-12 11:58:50 -07:00
committed by GitHub

View File

@@ -35,7 +35,7 @@ t_fail()
t_quiet()
{
echo "# $*" >> "$T_TMPDIR/quiet.log"
"$@" > "$T_TMPDIR/quiet.log" 2>&1 || \
"$@" >> "$T_TMPDIR/quiet.log" 2>&1 || \
t_fail "quiet command failed"
}