Merge branch 'fix_compile_warnings'

This commit is contained in:
2026-02-20 15:34:50 -06:00
40 changed files with 282 additions and 312 deletions

View File

@@ -40,7 +40,7 @@ package.load_config = function(name)
var config_path = get_path(name) + '/cell.toml'
if (!fd.is_file(config_path)) {
print(`${config_path} does not exist`); disrupt
log.error(`${config_path} does not exist`); disrupt
}
var content = text(fd.slurp(config_path))
@@ -49,7 +49,7 @@ package.load_config = function(name)
var result = toml.decode(content)
if (!result) {
print(`TOML decode returned null for ${config_path}`)
log.error(`TOML decode returned null for ${config_path}`)
return {}
}