Skip to content

Commit

Permalink
fix: spelling mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
shallinta committed Apr 9, 2021
1 parent 616805b commit 48f97cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ const handleFiles = (fileInfos) => {
} else if (fileInfo.sourceFileName === fileInfo.targetFileName) {
renamedFileCount += 1;
log.d('Zp-pick: renaming file ' + chalk.underline(fileInfo.sourceFileName) + ' to ' + chalk.underline(fileInfo.targetFileName));
fse.renameSync(fileInfo.sourceFilePath, fileIndo.targetFilePath);
fse.renameSync(fileInfo.sourceFilePath, fileInfo.targetFilePath);
}
});
log.i(`Zp-pick: done. ${unpickedFileCount} files removed. ${renamedFileCount} files renamed.`);
Expand Down

0 comments on commit 48f97cb

Please sign in to comment.