restore toml cache regression

This commit is contained in:
2026-01-20 05:33:44 -06:00
parent b3c0837d49
commit c051a99e75
2 changed files with 14 additions and 4 deletions

View File

@@ -120,7 +120,7 @@ if (target_pkg) {
}
}
if (length(updated_packages)) > 0) {
if (length(updated_packages) > 0) {
log.console("Updated " + text(length(updated_packages)) + " package" + (length(updated_packages) == 1 ? "" : "s") + ".")
} else {
log.console("All packages are up to date.")
@@ -135,13 +135,12 @@ if (run_build && length(updated_packages) > 0) {
arrfor(updated_packages, function(pkg) {
try {
var lib = build.build_dynamic(pkg, target_triple, 'release')
if (lib) {
if (lib)
log.console(" Built: " + lib)
}
} catch (e) {
log.error(" Failed to build " + pkg + ": " + e)
}
}, null, null)
})
}
$stop()