Skip to content

Commit fba2938

Browse files
authored
Fix contributors.md path
1 parent 3a64ca6 commit fba2938

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pullgithub.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ if (!fs.statSync("github", {throwIfNoEntry:false})) {
1414
await execute("git init", "github");
1515
await execute("git remote add -f origin https://github.com/EmulatorJS/EmulatorJS.git", "github");
1616
await execute("git config core.sparseCheckout true", "github");
17-
fs.writeFileSync("github/.git/info/sparse-checkout", "docs/Contributors.md\nCHANGES.md\n");
17+
fs.writeFileSync("github/.git/info/sparse-checkout", "docs/contributors.md\nCHANGES.md\n");
1818
await execute("git pull origin main", "github");
19-
fs.readFile('github/docs/Contributors.md', 'utf8', (err, data) => {
19+
fs.readFile('github/docs/contributors.md', 'utf8', (err, data) => {
2020
if (err) {
2121
throw err;
2222
}

0 commit comments

Comments
 (0)