Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1698)

Unified Diff: build/android/buildbot/buildbot_functions.sh

Issue 10981025: Do not halt build from check_webkit_licenses (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/android/buildbot/bb_fyi_builder.sh ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/buildbot/buildbot_functions.sh
diff --git a/build/android/buildbot/buildbot_functions.sh b/build/android/buildbot/buildbot_functions.sh
index 92d989ac135d6cb7d815ab0b47aad771f5a36a66..cc145cf62f5bdab1fc627253ac5f8388e97a948e 100755
--- a/build/android/buildbot/buildbot_functions.sh
+++ b/build/android/buildbot/buildbot_functions.sh
@@ -299,11 +299,10 @@ function bb_check_webview_licenses {
set +e
cd "${SRC_ROOT}"
python android_webview/tools/webview_licenses.py scan
- local license_exit_code=$?
- if [[ license_exit_code -ne 0 ]]; then
+ if [[ $? -ne 0 ]]; then
echo "@@@STEP_FAILURE@@@"
fi
- return $license_exit_code
+ return 0
)
}
« no previous file with comments | « build/android/buildbot/bb_fyi_builder.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698