missed this
This commit is contained in:
@@ -697,7 +697,7 @@ wtv-expire-all: wtv-news:/news?search=`;
|
|||||||
data = `<HTML>
|
data = `<HTML>
|
||||||
<HEAD>
|
<HEAD>
|
||||||
<DISPLAY fontsize=medium>
|
<DISPLAY fontsize=medium>
|
||||||
<TITLE>${(response.length == 0) ? "No " : ""}Discussion groups found</TITLE>
|
<TITLE>${(response.length === 0) ? "No " : ""}Discussion groups found</TITLE>
|
||||||
</HEAD>
|
</HEAD>
|
||||||
<sidebar width=114 height=420 align=left>
|
<sidebar width=114 height=420 align=left>
|
||||||
<table cellspacing=0 cellpadding=0 bgcolor=3d2f3a>
|
<table cellspacing=0 cellpadding=0 bgcolor=3d2f3a>
|
||||||
|
|||||||
@@ -399,8 +399,8 @@ getFiles(__dirname)
|
|||||||
} else {
|
} else {
|
||||||
// If no specific path, check all JS files as before
|
// If no specific path, check all JS files as before
|
||||||
jsFiles = files.filter(file =>
|
jsFiles = files.filter(file =>
|
||||||
path.extname(file) == ".js" &&
|
path.extname(file) === ".js" &&
|
||||||
file.indexOf("node_modules") == -1
|
file.indexOf("node_modules") === -1
|
||||||
);
|
);
|
||||||
console.log("Running syntax and scope checks on all JavaScript files...\n");
|
console.log("Running syntax and scope checks on all JavaScript files...\n");
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user