tweak to make sanity test pass

master
Gordon Williams 2021-03-01 11:47:58 +00:00
parent 01dc990ceb
commit dbbf4c3136
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ function clear_previous() {
previous.dst = '-'; previous.dst = '-';
previous.wp_name = '-'; previous.wp_name = '-';
previous.course = -999; previous.course = -999;
}; }
function drawCompass(course) { function drawCompass(course) {
if(!candraw) return; if(!candraw) return;

View File

@ -229,7 +229,7 @@ while(fileA=allFiles.pop()) {
if (globA.test(nameB)||globB.test(nameA)) { if (globA.test(nameB)||globB.test(nameA)) {
if (isGlob(nameA)||isGlob(nameB)) if (isGlob(nameA)||isGlob(nameB))
ERROR(`App ${fileB.app} ${typeB} file ${nameB} matches app ${fileA.app} ${typeB} file ${nameA}`) ERROR(`App ${fileB.app} ${typeB} file ${nameB} matches app ${fileA.app} ${typeB} file ${nameA}`)
else ERROR(`App ${fileB.app} ${typeB} file ${nameB} is also listed as ${typeA} file for app ${fileA.app}`) else WARN(`App ${fileB.app} ${typeB} file ${nameB} is also listed as ${typeA} file for app ${fileA.app}`)
} }
}) })
} }