Skip to content

Commit e400630

Browse files
committed
Fixes the counter of yaml template files for presentation in readme.md
1 parent 51ff85a commit e400630

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/parse.readme.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
total = 0
1616

1717

18-
for file in glob.glob("./nuclei-templates/**/*.yaml"):
18+
for file in glob.glob("./nuclei-templates/**/*.yaml", recursive=True):
1919
total += 1
2020
with open(file) as f:
2121
content = f.read()

0 commit comments

Comments
 (0)