mirror of
https://github.com/platformio/platformio-core.git
synced 2025-08-02 03:14:26 +02:00
Remove recursively .pio folders when packing a package
This commit is contained in:
@@ -28,11 +28,13 @@ from platformio.unpacker import FileUnpacker
|
|||||||
class PackagePacker(object):
|
class PackagePacker(object):
|
||||||
EXCLUDE_DEFAULT = [
|
EXCLUDE_DEFAULT = [
|
||||||
"._*",
|
"._*",
|
||||||
|
"__*",
|
||||||
".DS_Store",
|
".DS_Store",
|
||||||
".git",
|
".git/",
|
||||||
".hg",
|
".hg/",
|
||||||
".svn",
|
".svn/",
|
||||||
".pio",
|
".pio/",
|
||||||
|
"**/.pio/",
|
||||||
]
|
]
|
||||||
INCLUDE_DEFAULT = ManifestFileType.items().values()
|
INCLUDE_DEFAULT = ManifestFileType.items().values()
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user