mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-29 17:47:14 +02:00
Don't show tools in processing output
This commit is contained in:
@ -265,7 +265,8 @@ def GetActualLDScript(env):
|
||||
|
||||
def ProgressHandler(env, node):
|
||||
item = str(node)
|
||||
if "toolchain-" in item or item.endswith((".o", ".h", ".hpp", ".ipp")):
|
||||
if ("toolchain-" in item or "tool-" in item) or \
|
||||
item.endswith((".o", ".h", ".hpp", ".ipp")):
|
||||
return
|
||||
item = item.replace(env['PIOHOME_DIR'], ".platformio")
|
||||
print "Processing %s" % item
|
||||
|
Reference in New Issue
Block a user