Skip to content
This repository was archived by the owner on Jun 5, 2020. It is now read-only.

Commit a930ed2

Browse files
committed
Fix reference error
1 parent 1c62e98 commit a930ed2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

scripts/configure.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,9 @@ download(ccUrl, ccTempFile, function(error, bytes) {
9191
*/
9292
function configure_jre() {
9393
console.log(" Configuring JRE ...");
94-
94+
95+
var mb = 1024*1024;
96+
9597
// Test if there is already a global Java so we don't need to download anything
9698
ClosureCompiler.testJava(ClosureCompiler.getGlobalJava(), function(ok) {
9799
if (ok) {
@@ -318,5 +320,5 @@ function fail() {
318320
*/
319321
function finish() {
320322
cleanUp();
321-
console.log(" ✔ ClosureCompiler.js has successfully been configured. Have fun!\n");
323+
console.log(" ✔ ClosureCompiler.js has successfully been configured!\n");
322324
}

0 commit comments

Comments
 (0)