Skip to content

Commit

Permalink
Update data 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 a5107f4 commit 942adfa
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,7 +1,7 @@
const fs = require('fs');
const path = require('path');
const filePath = path.join(__dirname, '..', 'README.md');
const dataFilePath = path.join(__dirname, 'docs', 'data.json');
const dataFilePath = path.join(__dirname, 'data.json');

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

0 comments on commit 942adfa

Please sign in to comment.