This commit is contained in:
2026-01-18 08:54:48 -06:00
parent a7a323a74e
commit bbd2d298ba
18 changed files with 258 additions and 256 deletions

View File

@@ -132,7 +132,7 @@ if (run_build && updated_packages.length > 0) {
log.console("")
log.console("Building updated packages...")
for (var pkg of updated_packages) {
arrfor(updated_packages, function(pkg) {
try {
var lib = build.build_dynamic(pkg, target_triple, 'release')
if (lib) {
@@ -141,7 +141,7 @@ if (run_build && updated_packages.length > 0) {
} catch (e) {
log.error(" Failed to build " + pkg + ": " + e)
}
}
}, null, null)
}
$stop()