Commit 52bc72fb authored by Christopher Chedeau's avatar Christopher Chedeau Committed by Dan Abramov
Browse files

Remove the `.` at the end of the init message (#760)

Otherwise it makes it an invalid path :(
parent 4c183b72
Showing with 1 addition and 1 deletion
+1 -1
...@@ -88,7 +88,7 @@ module.exports = function(appPath, appName, verbose, originalDirectory) { ...@@ -88,7 +88,7 @@ module.exports = function(appPath, appName, verbose, originalDirectory) {
} }
console.log(); 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('Inside that directory, you can run several commands:');
console.log(); console.log();
console.log(chalk.cyan(' npm start')); console.log(chalk.cyan(' npm start'));
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment