Skip to content

Commit c67617b

Browse files
author
Jonathan Felchlin
committed
Fixing undefined variable
1 parent 9b208a6 commit c67617b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: packages/react-dev-utils/printHostingInstructions.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ function printHostingInstructions(
3838
// or no homepage
3939
printBaseMessage(buildFolder, publicUrl);
4040

41-
printStaticServerInstructions(useYarn);
41+
printStaticServerInstructions(buildFolder, useYarn);
4242
}
4343
console.log();
4444
}
@@ -108,7 +108,7 @@ function printDeployInstructions(publicUrl, hasDeployScript, useYarn) {
108108
console.log(` ${chalk.cyan(useYarn ? 'yarn' : 'npm')} run deploy`);
109109
}
110110

111-
function printStaticServerInstructions(useYarn) {
111+
function printStaticServerInstructions(buildFolder, useYarn) {
112112
console.log('You may serve it with a static server:');
113113
console.log();
114114

0 commit comments

Comments
 (0)