Ensure real dev/platform name before build process // Resolve #1170

This commit is contained in:
Ivan Kravets
2017-11-08 00:38:19 +02:00
parent d1a2dba68c
commit 4c170b7934
2 changed files with 7 additions and 5 deletions

View File

@@ -613,8 +613,8 @@ def GetLibBuilders(env): # pylint: disable=too-many-branches
items = []
compat_mode = int(env.get("LIB_COMPAT_MODE", 1))
verbose = (int(ARGUMENTS.get("PIOVERBOSE", 0))
and not env.GetOption('clean'))
verbose = int(ARGUMENTS.get("PIOVERBOSE",
0)) and not env.GetOption('clean')
def _check_lib_builder(lb):
if lb.name in env.get("LIB_IGNORE", []):