Skip to content

Commit

Permalink
fix http component
Browse files Browse the repository at this point in the history
Signed-off-by: karthik2804 <[email protected]>
  • Loading branch information
karthik2804 committed Sep 23, 2024
1 parent 26d0cab commit 2c5112c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/add.rs
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ async fn edit_component_deps_in_manifest(
} => {
let mut http_table = toml_edit::InlineTable::default();
http_table.get_or_insert("url", url);
http_table.get_or_insert("sha256", digest);
http_table.get_or_insert("digest", digest);
toml_edit::Value::InlineTable(http_table)
}
};
Expand Down

0 comments on commit 2c5112c

Please sign in to comment.