Skip to content

Commit

Permalink
Port error msg
Browse files Browse the repository at this point in the history
Updated the error msg to reference default port instead of suggested port
  • Loading branch information
jlbruno authored Jul 25, 2016
1 parent c0f391a commit 245676c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function promptForPort(suggestedPort) {
output: process.stdout
});

var question = chalk.red('Something is already running at port ' + suggestedPort) +
var question = chalk.red('Something is already running at port ' + DEFAULT_PORT) +
'\nWould you like to run the app at another port instead? [Y/n] ';

rl.question(question, answer => {
Expand Down

0 comments on commit 245676c

Please sign in to comment.