Merge "tools_common.sh: Fix vlog()"

This commit is contained in:
Tom Finegan 2014-05-08 15:54:26 -07:00 committed by Gerrit Code Review
commit e6224ddaa3

View File

@ -18,7 +18,9 @@ set -e
devnull='> /dev/null 2>&1'
vlog() {
[ "${VPX_TEST_VERBOSE_OUTPUT}" = "yes" ] && echo "$@"
if [ "${VPX_TEST_VERBOSE_OUTPUT}" = "yes" ]; then
echo "$@"
fi
}
# Sets $VPX_TOOL_TEST to the name specified by positional parameter one.