Skip to content

Commit

Permalink
Merge pull request #6481 from adyouri/master
Browse files Browse the repository at this point in the history
Fix a typo
  • Loading branch information
amyrlam authored Feb 21, 2019
2 parents 9fcc45a + a5c6112 commit b8386fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/create-react-app/createReactApp.js
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ function run(
const currentFiles = fs.readdirSync(path.join(root));
currentFiles.forEach(file => {
knownGeneratedFiles.forEach(fileToMatch => {
// This remove all of knownGeneratedFiles.
// This removes all knownGeneratedFiles.
if (file === fileToMatch) {
console.log(`Deleting generated file... ${chalk.cyan(file)}`);
fs.removeSync(path.join(root, file));
Expand Down

0 comments on commit b8386fe

Please sign in to comment.