sx sync: catch bindings take parens; Allocator.alloc -> alloc_bytes
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user