Skip to content
Snippets Groups Projects
Commit 24596498 authored by rswindell's avatar rswindell
Browse files

Output the group name when printing sub/dir/xtrn code issues.

parent 15a16fc4
No related branches found
No related tags found
No related merge requests found
......@@ -15,10 +15,10 @@ function check_codes(desc, grp_list, sub_list)
var sub = grp_list[g][sub_list][s];
var code = sub.code.toUpperCase();
if(list.indexOf(code) >= 0)
output.push("Duplicate " + desc +" internal code: " + code);
output.push("Duplicate " + desc +" internal code in " + grp_list[g].name + ": " + code);
else {
if(file_getname(code) != code)
output.push("Invalid " + desc + " internal code: " + code);
output.push("Invalid " + desc + " internal code in " + grp_list[g].name + ": " + code);
list.push(code);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment