Skip to content

Commit

Permalink
Fixing undefined variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Felchlin committed Aug 31, 2017
1 parent 9b208a6 commit c67617b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/react-dev-utils/printHostingInstructions.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function printHostingInstructions(
// or no homepage
printBaseMessage(buildFolder, publicUrl);

printStaticServerInstructions(useYarn);
printStaticServerInstructions(buildFolder, useYarn);
}
console.log();
}
Expand Down Expand Up @@ -108,7 +108,7 @@ function printDeployInstructions(publicUrl, hasDeployScript, useYarn) {
console.log(` ${chalk.cyan(useYarn ? 'yarn' : 'npm')} run deploy`);
}

function printStaticServerInstructions(useYarn) {
function printStaticServerInstructions(buildFolder, useYarn) {
console.log('You may serve it with a static server:');
console.log();

Expand Down

0 comments on commit c67617b

Please sign in to comment.