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

Otherwise it makes it an invalid path :(
This commit is contained in:
Christopher Chedeau
2016-09-26 02:22:55 -07:00
committed by Dan Abramov
parent 4c183b729a
commit 52bc72fbde

View File

@@ -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'));