mirror of
https://github.com/awesome-selfhosted/awesome-selfhosted.git
synced 2024-11-30 02:46:52 +01:00
Fix line numbers
This commit is contained in:
parent
ffca1682ca
commit
c32317a686
4
test.js
4
test.js
@ -27,8 +27,8 @@ function entryErrorCheck(md) {
|
||||
if (entryArray[i].pass == true) {
|
||||
totalPass += 1;
|
||||
//console.log(i + 1 + ". Pass: " + entryArray[i].name);
|
||||
} else {
|
||||
console.log("Line #" + i + 1 + ". Fail: " + entryArray[i].name);
|
||||
} else {
|
||||
console.log("Line #" + (i + 1) + ". Fail: " + entryArray[i].name);
|
||||
//console.log(entries[i]);
|
||||
totalFail += 1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user