mirror of
https://github.com/platformio/platformio-core.git
synced 2025-08-01 02:54:25 +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):
|
def ProgressHandler(env, node):
|
||||||
item = str(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
|
return
|
||||||
item = item.replace(env['PIOHOME_DIR'], ".platformio")
|
item = item.replace(env['PIOHOME_DIR'], ".platformio")
|
||||||
print "Processing %s" % item
|
print "Processing %s" % item
|
||||||
|
Reference in New Issue
Block a user