Skip to content

Commit

Permalink
Fix README copying capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
JackBailey committed Sep 15, 2022
1 parent 1781613 commit 476a63f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/InsertBase.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ module.exports = function InsertBase(path_name, main_entry) {
fs.writeFile("./".concat(process.env.SECRET_PATH, "/").concat(path_name, "/package.json"), JSON.stringify(PackageJsonBase, null, 4), function (err) {
if (err)
return console.error(err);
fs.copyFile("./template/readme.md", Readme, function (err) {
fs.copyFile("./template/README.md", Readme, function (err) {
if (err)
throw err;
Terminal("cd ./".concat(process.env.SECRET_PATH, "/").concat(path_name, " && npm install"))
Expand Down

0 comments on commit 476a63f

Please sign in to comment.