diff options
author | Matt A. Tobin <email@mattatobin.com> | 2021-10-30 16:08:27 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2021-10-30 16:08:27 -0400 |
commit | abc16648c3bcccd785ab5708f02f39947d7dd3fa (patch) | |
tree | a803085f10efa2419a97e5499807f33b882a531e | |
parent | 13a6284ef188b56475aa5a56083d5d419d3524e0 (diff) | |
download | aura-central-abc16648c3bcccd785ab5708f02f39947d7dd3fa.tar.gz |
No Issue - Make building the backend fun again!
-rw-r--r-- | python/mozbuild/mozbuild/config_status.py | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/python/mozbuild/mozbuild/config_status.py b/python/mozbuild/mozbuild/config_status.py index 79b0a514a..ee122c807 100644 --- a/python/mozbuild/mozbuild/config_status.py +++ b/python/mozbuild/mozbuild/config_status.py @@ -13,6 +13,7 @@ import os import subprocess import sys import time +import random from argparse import ArgumentParser @@ -112,8 +113,25 @@ def config_status(topobjdir='.', topsrcdir='.', defines=None, log_manager.add_terminal_logging(level=log_level) log_manager.enable_unstructured() - print('Feeding the hatchlings...', file=sys.stderr) + STATUS_MESSAGES = [ + 'Reticulating splines', + 'Walking the dog', + 'Feeding the hatchlings', + 'Pressing play on tape', + 'Spinning the wheel', + 'Adjusting flux capacitor', + 'Granting wishes', + 'Auditing the taxes', + 'Twiddling thumbs', + 'Consulting the manual', + 'Brewing coffee', + 'Inserting coin', + 'What? Hold on', + ] + + print('{0}...'.format(random.choice(STATUS_MESSAGES)), file=sys.stderr) sys.stderr.flush() + if len(selected_backends) > 1: definitions = list(definitions) |