aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/launch_utils.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/launch_utils.py b/modules/launch_utils.py
index 5be30a18..c0847e14 100644
--- a/modules/launch_utils.py
+++ b/modules/launch_utils.py
@@ -248,7 +248,11 @@ def run_extensions_installers(settings_file):
return
with startup_timer.subcategory("run extensions installers"):
- for dirname_extension in list_extensions(settings_file):
+ from tqdm.auto import tqdm
+ pbar_extensions = tqdm(list_extensions(settings_file),
+ bar_format="{desc}: |{bar}|{percentage:3.0f}% [{n_fmt}/{total_fmt} {elapsed}<{remaining}]")
+ for dirname_extension in pbar_extensions:
+ pbar_extensions.set_description("Installing %s" % dirname_extension)
path = os.path.join(extensions_dir, dirname_extension)
if os.path.isdir(path):