Skip to content

Commit

Permalink
refactor: project config overrides for claims commands
Browse files Browse the repository at this point in the history
Signed-off-by: Ahmed <[email protected]>
  • Loading branch information
ahmedtadde committed Dec 27, 2023
1 parent 82a569d commit 95d9506
Show file tree
Hide file tree
Showing 5 changed files with 483 additions and 87 deletions.
6 changes: 3 additions & 3 deletions crates/wash-lib/src/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,9 @@ pub fn sign_actor_wasm(
source,
destination: Some(destination.to_string_lossy().to_string()),
metadata: ActorMetadata {
name: common_config.name.clone(),
ver: common_config.version.to_string(),
rev: common_config.revision,
name: Some(common_config.name.clone()),
ver: Some(common_config.version.to_string()),
rev: Some(common_config.revision),
custom_caps: actor_config.claims.clone(),
call_alias: actor_config.call_alias.clone(),
issuer: signing_config.issuer,
Expand Down
Loading

0 comments on commit 95d9506

Please sign in to comment.