Skip to content

Commit

Permalink
meta all command - fixed --locked argument
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-marinica committed Sep 17, 2023
1 parent 98191b8 commit 7574c2e
Showing 1 changed file with 3 additions and 0 deletions.
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 7574c2e

Please sign in to comment.