Skip to content

Commit

Permalink
removed --frozen-lockfile
Browse files Browse the repository at this point in the history
  • Loading branch information
sanekmelnikov committed Nov 29, 2024
1 parent a1254a5 commit 08d21ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zkstack_cli/crates/common/src/contracts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ pub fn build_l2_contracts(shell: Shell, link_to_code: PathBuf) -> anyhow::Result
pub fn build_system_contracts(shell: Shell, link_to_code: PathBuf) -> anyhow::Result<()> {
let _dir_guard = shell.push_dir(link_to_code.join("contracts/system-contracts"));
// Do not update era-contract's lockfile to avoid dirty submodule
Cmd::new(cmd!(shell, "yarn install --frozen-lockfile")).run()?;
Cmd::new(cmd!(shell, "yarn install")).run()?;
Ok(Cmd::new(cmd!(shell, "yarn build")).run()?)
}

0 comments on commit 08d21ca

Please sign in to comment.