mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-30 10:07:14 +02:00
Better representation of dependent packages
This commit is contained in:
@ -213,7 +213,9 @@ def PrintConfiguration(env): # pylint: disable=too-many-statements
|
|||||||
if extra:
|
if extra:
|
||||||
info += " (%s)" % ", ".join(extra)
|
info += " (%s)" % ", ".join(extra)
|
||||||
data.append(info)
|
data.append(info)
|
||||||
return ["PACKAGES:", ", ".join(data)]
|
if not data:
|
||||||
|
return None
|
||||||
|
return ["PACKAGES:"] + ["\n - %s" % d for d in sorted(data)]
|
||||||
|
|
||||||
for data in (
|
for data in (
|
||||||
_get_configuration_data(),
|
_get_configuration_data(),
|
||||||
|
Reference in New Issue
Block a user