Skip to content

Commit

Permalink
Remove template string
Browse files Browse the repository at this point in the history
  • Loading branch information
n3tr committed Feb 14, 2017
1 parent ed11c7a commit 423dd1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/create-react-app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ function run(root, appName, version, verbose, originalDirectory, template) {
var allDependencies = ['react', 'react-dom', packageToInstall];

console.log('Installing packages. This might take a couple minutes.');
console.log('Installing ' + chalk.cyan(`react, react-dom, ${packageName}`) + '...');
console.log('Installing ' + chalk.cyan('react, react-dom, ' + packageName) + '...');
console.log();

install(allDependencies, verbose, function(code, command, args) {
Expand Down

0 comments on commit 423dd1a

Please sign in to comment.