sx sync: catch bindings take parens; Allocator.alloc -> alloc_bytes

This commit is contained in:
agra
2026-06-11 22:58:22 +03:00
parent ea2cf14f48
commit a93a9a922b
5 changed files with 16 additions and 16 deletions

View File

@@ -60,7 +60,7 @@ check_missing_artifact_path :: (alloc: Allocator) -> bool {
if pe { return false; } // parse must not fail here
raised := false;
matched := false;
validate_manifest(m, "examples") catch err { raised = true; matched = (err == error.MissingArtifact); };
validate_manifest(m, "examples") catch (err) { raised = true; matched = (err == error.MissingArtifact); };
return raised and matched;
}