Ignore docs in Cocoapods generated directory

pull/20767/head
Muxi Yan 5 years ago
parent e6b504ccf7
commit 24dc93c82c
  1. 2
      templates/tools/doxygen/Doxyfile.objc.include

@ -13,7 +13,7 @@
srcdoc = []
for dirpath, dirnames, filenames in os.walk('src/objective-c'):
for file in filenames:
if os.path.splitext(file)[1] == '.md':
if os.path.splitext(file)[1] == '.md' and dirpath.find('/Pods/') == -1:
srcdoc.append(os.path.join(dirpath, file))
def glob_recursive(dir, pattern):

Loading…
Cancel
Save