skip examples with leading underscore
This commit is contained in:
parent
036d51e7b5
commit
84491f2122
1 changed files with 1 additions and 1 deletions
|
@ -152,7 +152,7 @@ def build_oxjs(downloads=False, geo=False):
|
||||||
['Geo', 'Image', 'Unicode']
|
['Geo', 'Image', 'Unicode']
|
||||||
)),
|
)),
|
||||||
'examples': filter(
|
'examples': filter(
|
||||||
lambda x: not re.search('^\.', x),
|
lambda x: not re.search('^[\._]', x),
|
||||||
os.listdir(root_path + 'examples/')
|
os.listdir(root_path + 'examples/')
|
||||||
),
|
),
|
||||||
'readme': map(
|
'readme': map(
|
||||||
|
|
Loading…
Reference in a new issue