Skip to content

Commit

Permalink
Fix up broken line
Browse files Browse the repository at this point in the history
  • Loading branch information
gaearon authored Feb 24, 2017
1 parent dbf17fd commit 3289c32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react-scripts/scripts/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ function build(previousSizeMap) {
console.log(' ' + chalk.cyan('npm') + ' install -g pushstate-server');
}
console.log(' ' + chalk.cyan('pushstate-server') + ' ' + build);
console.log(' ' + chalk.cyan(openCommand) + ' http://localhost:' + (process.env.PORT || 9000)
console.log(' ' + chalk.cyan(openCommand) + ' http://localhost:' + (process.env.PORT || 9000));
console.log();
}
});
Expand Down

1 comment on commit 3289c32

@mattccrampton
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was my fault, there was a merge conflict after I made the pull request and the merge nuked the end parentheses. Thanks for catching it.

Please sign in to comment.