Show detailed library dependency tree only in the verbose mode // Resolve #4517

This commit is contained in:
Ivan Kravets
2023-01-29 14:34:54 +02:00
parent b2a04f265e
commit 188c65ef7b
2 changed files with 2 additions and 1 deletions

View File

@ -17,6 +17,7 @@ PlatformIO Core 6
6.1.7 (2023-??-??)
~~~~~~~~~~~~~~~~~~
* Show detailed library dependency tree only in the `verbose mode <https://docs.platformio.org/en/latest/core/userguide/cmd_run.html#cmdoption-pio-run-v>`__ (`issue #4517 <https://github.com/platformio/platformio-core/issues/4517>`_)
* Prevented shell injection when converting INO file to CPP (`issue #4532 <https://github.com/platformio/platformio-core/issues/4532>`_)
6.1.6 (2023-01-23)

View File

@ -1161,7 +1161,7 @@ def ConfigureProjectLibBuilder(env):
click.echo("Path: %s" % lb.path, nl=False)
click.echo(")", nl=False)
click.echo("")
if lb.depbuilders:
if lb.verbose and lb.depbuilders:
_print_deps_tree(lb, level + 1)
project = ProjectAsLibBuilder(env, "$PROJECT_DIR")