From 0c8e74dcecfe02034ee5ea150ee9f5910250c595 Mon Sep 17 00:00:00 2001 From: Martin Robinson Date: Thu, 18 Jan 2024 20:05:41 +0100 Subject: [PATCH] mach: Don't print anything when deps are up-to-date (#31128) I added this print statement, but after using `mach` for a while with it, I think it is far too chatty. This change just removes the line. Information is only printed when dependencies are installed. --- python/mach_bootstrap.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/python/mach_bootstrap.py b/python/mach_bootstrap.py index 053f7245798..86ba50d8341 100644 --- a/python/mach_bootstrap.py +++ b/python/mach_bootstrap.py @@ -141,8 +141,6 @@ def install_virtual_env_requirements(project_path: str, python: str, virtualenv_ "-r", requirements_paths[2]]) with open(marker_path, "w") as marker_file: marker_file.write(requirements_hash) - else: - print(" * Python requirements up to date.") def _activate_virtualenv(topdir):