Skip to content

Commit

Permalink
Merge pull request #1218 from multiversx/locked-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sasurobert authored Sep 17, 2023
2 parents 98191b8 + ed13a8f commit a7280dc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion framework/meta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ anyhow = "1.0.44"
rustc_version = "0.4"
toml = { version = "0.5.8", features = ["preserve_order"] }
ruplacer = "0.8.1"
clap = { version = "4.1.0", features = ["derive", "cargo"] }
clap = { version = "4.1.0", features = ["derive"] }
colored = "2.0"
pathdiff = "0.2.1"
common-path = "1.0.0"
Expand Down
3 changes: 3 additions & 0 deletions framework/meta/src/cli_args/cli_args_build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,9 @@ impl BuildArgs {
impl CliArgsToRaw for BuildArgs {
fn to_raw(&self) -> Vec<String> {
let mut raw = Vec::new();
if self.locked {
raw.push("--locked".to_string());
}
if self.wasm_symbols {
raw.push("--wasm-symbols".to_string());
}
Expand Down

0 comments on commit a7280dc

Please sign in to comment.