Skip to content

Commit

Permalink
Show output from contract verifier
Browse files Browse the repository at this point in the history
  • Loading branch information
matias-gonz committed Jul 12, 2024
1 parent d1eea82 commit 6709f1d
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@ pub(crate) async fn run(shell: &Shell) -> anyhow::Result<()> {

logger::info(MSG_RUNNING_CONTRACT_VERIFIER);

Cmd::new(cmd!(
let mut cmd = Cmd::new(cmd!(
shell,
"cargo run --bin zksync_contract_verifier -- --config-path={config_path} --secrets-path={secrets_path}"
)).run().context(MSG_FAILED_TO_RUN_CONTRACT_VERIFIER_ERR)
));
cmd = cmd.with_force_run();
cmd.run().context(MSG_FAILED_TO_RUN_CONTRACT_VERIFIER_ERR)
}

0 comments on commit 6709f1d

Please sign in to comment.