Disable bot check when archiving
The new bots does not pass this check.
Bug: 126871526
Change-Id: I16f925d08664c5e61385818379280ecdc6f84f05
diff --git a/tools/archive.py b/tools/archive.py
index c842c69..5c0c231 100755
--- a/tools/archive.py
+++ b/tools/archive.py
@@ -92,8 +92,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')
if utils.is_old_bot():
print("Archiving is disabled on old bots.")