From fec5488f23f95b1371f87973f2cae3b40ed93535 Mon Sep 17 00:00:00 2001 From: Christopher Chedeau Date: Sun, 25 Sep 2016 21:07:37 -0700 Subject: [PATCH] Remove the `.` at the end of the init message Otherwise it makes it an invalid path :( --- packages/react-scripts/scripts/init.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-scripts/scripts/init.js b/packages/react-scripts/scripts/init.js index cbefd413c29..fa42f6dcee6 100644 --- a/packages/react-scripts/scripts/init.js +++ b/packages/react-scripts/scripts/init.js @@ -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'));