diff options
-rwxr-xr-x | tools/buildbot-build.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/buildbot-build.sh b/tools/buildbot-build.sh index 12ce461539..b08a231124 100755 --- a/tools/buildbot-build.sh +++ b/tools/buildbot-build.sh @@ -16,6 +16,8 @@ set -e +. "$(dirname $0)/buildbot-utils.sh" + shopt -s failglob if [ ! -d art ]; then @@ -387,4 +389,6 @@ EOF rm -rf $linkerconfig_out mkdir -p $linkerconfig_out $ANDROID_HOST_OUT/bin/linkerconfig --target $linkerconfig_out --root $linkerconfig_root --vndk $platform_version + echo -e "${boldcyan}note:${nc} Don't be scared by \"Unable to access VNDK APEX\" message," \ + " it's not fatal" fi |