allow "0" as a build-id

This commit is contained in:
John Turner
2025-11-23 01:34:01 +00:00
parent ffa1a05fc1
commit bffc1e88b0

View File

@@ -57,6 +57,7 @@ impl<'a> Parseable<'a, &'a str> for BuildId {
start
.and(rest)
.recognize()
.or(tag("0"))
.map(|output: &str| BuildId(output.to_string()))
}
}