Skip to content

Commit

Permalink
pass libraries to verify args
Browse files Browse the repository at this point in the history
  • Loading branch information
dcb9 committed Apr 22, 2024
1 parent 63fff35 commit 42c0273
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/forge/bin/cmd/create.rs
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ impl CreateArgs {
skip_is_verified_check: true,
watch: true,
retry: self.retry,
libraries: vec![],
libraries: self.opts.libraries.clone(),
root: None,
verifier: self.verifier.clone(),
via_ir: self.opts.via_ir,
Expand Down Expand Up @@ -330,7 +330,7 @@ impl CreateArgs {
skip_is_verified_check: false,
watch: true,
retry: self.retry,
libraries: vec![],
libraries: self.opts.libraries.clone(),
root: None,
verifier: self.verifier,
via_ir: self.opts.via_ir,
Expand Down

0 comments on commit 42c0273

Please sign in to comment.