Skip to content

Commit

Permalink
Update readme.js
Browse files Browse the repository at this point in the history
  • Loading branch information
nuoxoxo authored Nov 15, 2024
1 parent 0be86a1 commit c9d3086
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion readme.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function get_readme_path(dir) {
const stats = fs.statSync(filepath)
if (stats.isDirectory() && filename.startsWith('level')) {
res.push( ... get_readme_path(filepath))
} else if (stats.isFile() && filename.endsWith('README.mdx') {
} else if (stats.isFile() && filename.endsWith('README.mdx') && ! filename.endsWith('cfo/README.mdx')) {
res.push(filepath)
}
// console.log(res)
Expand Down

0 comments on commit c9d3086

Please sign in to comment.