forked from platformio/platformio-core
Fix bug with Arduino based library where utility folder is used
This commit is contained in:
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
VERSION = (3, 0, "0a7")
|
VERSION = (3, 0, "0a8")
|
||||||
__version__ = ".".join([str(s) for s in VERSION])
|
__version__ = ".".join([str(s) for s in VERSION])
|
||||||
|
|
||||||
__title__ = "platformio"
|
__title__ = "platformio"
|
||||||
|
@ -360,7 +360,7 @@ class ArduinoLibBuilder(LibBuilderBase):
|
|||||||
"+<*.%s>" % ext
|
"+<*.%s>" % ext
|
||||||
for ext in piotool.SRC_BUILD_EXT + piotool.SRC_HEADER_EXT
|
for ext in piotool.SRC_BUILD_EXT + piotool.SRC_HEADER_EXT
|
||||||
]
|
]
|
||||||
src_filter.append("+<utility%s>" + sep)
|
src_filter.append("+<utility%s>" % sep)
|
||||||
return src_filter
|
return src_filter
|
||||||
|
|
||||||
def is_framework_compatible(self, framework):
|
def is_framework_compatible(self, framework):
|
||||||
|
Reference in New Issue
Block a user