Skip RBE warning message

Since RBE is default for dev builds, and we no longer set RBE config
through env variables, this error message is incorrect.

Bug: b/265326161
Test: Ran a build and make sure this error message wasn't printed
anymore.

Change-Id: I128616ce37763400407e099b52ef284905239eb4
This commit is contained in:
Kousik Kumar 2023-01-12 20:21:00 +00:00
parent 8ee63e4ee8
commit 869f3fee37

View file

@ -1852,11 +1852,6 @@ function _wrap_build()
color_reset=""
fi
if [[ "x${USE_RBE}" == "x" && $mins -gt 15 && "${ANDROID_BUILD_ENVIRONMENT_CONFIG}" == "googler" ]]; then
echo
echo "${color_warning}Start using RBE (http://go/build-fast) to get faster builds!${color_reset}"
fi
echo
if [ $ret -eq 0 ] ; then
echo -n "${color_success}#### build completed successfully "