Version 1.4.63
Cherry-pick: Disable bot check when archiving
CL: https://r8-review.googlesource.com/c/r8/+/34949
Bug: 126871526
Change-Id: I8739dcb5487c5ffc2756ff9545211d5bd04db12e
diff --git a/tools/archive.py b/tools/archive.py
index ce04494..2ebb108 100755
--- a/tools/archive.py
+++ b/tools/archive.py
@@ -88,8 +88,9 @@
def Main():
(options, args) = ParseOptions()
- if not utils.is_bot() and not options.dry_run:
- raise Exception('You are not a bot, don\'t archive builds')
+ # TODO(126871526): Fix the is_bot check.
+ # if not utils.is_bot() and not options.dry_run:
+ # raise Exception('You are not a bot, don\'t archive builds')
# Generate an r8-ed build without dependencies.
# The '-Pno_internal' flag is important because we generate the lib based on uses in tests.