Skip to content

Commit

Permalink
Remove the . at the end of the init message (facebook#760)
Browse files Browse the repository at this point in the history
Otherwise it makes it an invalid path :(
  • Loading branch information
vjeux authored and feiqitian committed Oct 25, 2016
1 parent e8507b2 commit fb8330a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react-scripts/scripts/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ module.exports = function(appPath, appName, verbose, originalDirectory) {
}

console.log();
console.log('Success! Created ' + appName + ' at ' + appPath + '.');
console.log('Success! Created ' + appName + ' at ' + appPath);
console.log('Inside that directory, you can run several commands:');
console.log();
console.log(chalk.cyan(' npm start'));
Expand Down

0 comments on commit fb8330a

Please sign in to comment.