From 52bc72fbde81a6e423a12af49f5fe274e668c36d Mon Sep 17 00:00:00 2001 From: Christopher Chedeau <vjeuxx@gmail.com> 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 cbefd413c..fa42f6dce 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')); -- GitLab