This commit is contained in:
2026-01-21 09:05:02 -06:00
parent 18ca9e14ba
commit f7be9c3344
30 changed files with 237 additions and 246 deletions

View File

@@ -100,7 +100,7 @@ function read_ignore(dir) {
arrfor(lines, function(line) {
line = trim(line)
if (!line || starts_with(line, '#')) return
patterns.push(line)
push(patterns, line)
})
}
return patterns
@@ -120,7 +120,7 @@ Resources.getAllFiles = function(dir = "") {
if (!st.filesize) return
var ext = getExtension(f)
if (!isRecognizedExtension(ext)) return
results.push(fullPath)
push(results, fullPath)
} catch(e) {}
})
return results