From fb8330a4186bac889b2247341607993bb6617cbf Mon Sep 17 00:00:00 2001 From: Christopher Chedeau Date: Mon, 26 Sep 2016 02:22:55 -0700 Subject: [PATCH] Remove the `.` at the end of the init message (#760) 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'));