This patch puts the hasher name in the header
This was a bug, as the previous implementation simply sets the hash, but we need to set the hash in a place where we can re-find it with a hasher.
This commit is contained in:
parent
737aab80dc
commit
6a1ffe059b
1 changed files with 10 additions and 6 deletions
|
@ -168,13 +168,17 @@ impl<'a> Ref<'a> {
|
||||||
};
|
};
|
||||||
|
|
||||||
for tpl in [
|
for tpl in [
|
||||||
Some(("ref", Value::Table(BTreeMap::new()))),
|
Some((String::from("ref"), Value::Table(BTreeMap::new()))),
|
||||||
Some(("ref.permissions", Value::Table(BTreeMap::new()))),
|
Some((String::from("ref.permissions"), Value::Table(BTreeMap::new()))),
|
||||||
|
Some((String::from("ref.path"), Value::String(canonical_path))),
|
||||||
|
Some((String::from("ref.content_hash"), Value::Table(BTreeMap::new()))),
|
||||||
|
|
||||||
Some(("ref.path", Value::String(canonical_path))),
|
content_hash.map(|hash| {
|
||||||
|
(format!("ref.content_hash.{}", h.hash_name()), Value::String(hash))
|
||||||
content_hash.map(|h| ("ref.content_hash", Value::String(h))),
|
}),
|
||||||
permissions.map(|p| ("ref.permissions.ro", Value::Boolean(p.readonly()))),
|
permissions.map(|p| {
|
||||||
|
(String::from("ref.permissions.ro"), Value::Boolean(p.readonly()))
|
||||||
|
}),
|
||||||
].into_iter()
|
].into_iter()
|
||||||
{
|
{
|
||||||
match tpl {
|
match tpl {
|
||||||
|
|
Loading…
Reference in a new issue