Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
Small change to a cli literal
  • Loading branch information
MrBrownser committed Mar 25, 2019
1 parent d7bc30d commit a5a4edf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/cli/init-cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ function writeDirectory(answers) {
var _pathData = path.join(_path, '/rest');
makeDir.sync(_path);
makeDir.sync(_pathData);
log('Wrote directroy "' + _path + '"');
log('Wrore directroy "' + _pathData + '"');
log('Wrote directory "' + _path + '"');
log('Wrore directory "' + _pathData + '"');
return Boolean(utils.existDir(_path) && utils.existDir(_pathData)) ? _path : undefined;
}

Expand Down

0 comments on commit a5a4edf

Please sign in to comment.