Skip to content

Commit

Permalink
Update file path in parse-readme.js
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxRohowsky committed Mar 9, 2024
1 parent cc92f7f commit a5107f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/parse-readme.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const fs = require('fs');
const path = require('path');
const filePath = path.join(__dirname, 'README.md');
const filePath = path.join(__dirname, '..', 'README.md');
const dataFilePath = path.join(__dirname, 'docs', 'data.json');

fs.readFile(filePath, 'utf8', (err, data) => {
Expand Down

0 comments on commit a5107f4

Please sign in to comment.