Skip to content

Commit

Permalink
Merge pull request #20 from raboof/prefix-hash-with-algorithm
Browse files Browse the repository at this point in the history
  • Loading branch information
JulienMalka authored Mar 2, 2024
2 parents ff428a1 + c54eafc commit 878c6cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/src/bin/build-hook.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ async fn main() -> Result<()> {
.split(" ")
.map(|path| OutputAttestation {
output_path: path,
output_hash: hash_path("sha256", Base32, path).unwrap(),
output_hash: format!("sha256:{0}", hash_path("sha256", Base32, path).unwrap()),
})
.collect();

Expand Down

0 comments on commit 878c6cb

Please sign in to comment.