Skip to content

Commit

Permalink
fix(midway-bin): log message grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
waitingsong authored and czy88840616 committed Nov 20, 2019
1 parent d05a2e6 commit 30091d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/midway-bin/lib/cmd/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ class BuildCommand extends Command {

copyFile(srcFile, targetFile, cwd) {
if (!fs.existsSync(srcFile)) {
console.warn(`[midway-bin] can't found ${srcFile} and skip it`);
console.warn(`[midway-bin] can't find ${srcFile} and skip it`);
} else {
fse.copySync(path.join(cwd, srcFile), path.join(cwd, targetFile));
console.log(`[midway-bin] copy ${srcFile} to ${targetFile} success!`);
Expand Down

0 comments on commit 30091d0

Please sign in to comment.