Don't show tools in processing output

This commit is contained in:
Ivan Kravets
2016-08-03 20:21:23 +03:00
parent 6b064cb915
commit 823e8374b1

View File

@ -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