forgot to handle a missing extension in files_with_ext_from_filelist

This commit is contained in:
Daniel Brooks
2018-05-05 08:55:26 -07:00
parent 1ceb58c9cc
commit fd1ec3e28a
+3
View File
@@ -1680,6 +1680,9 @@ var Module = null;
}
function files_with_ext_from_filelist(xml, ext) {
if (!ext) {
return [];
}
if (!ext.startsWith('.')) {
ext = '.'+ ext;
}