Skip to content

Commit

Permalink
Remove the . at the end of the init message (#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 gaearon committed Sep 26, 2016
1 parent 4c183b7 commit 52bc72f
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 52bc72f

Please sign in to comment.