Skip to content

Commit

Permalink
add --verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
dj8yf0μl committed Jan 17, 2025
1 parent 9d30422 commit e91bd03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cargo-near-build/src/near/build/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ pub fn run(args: Opts) -> eyre::Result<CompilationArtifact> {

let out_dir = crate_metadata.resolve_output_dir(args.out_dir.clone().map(Into::into))?;

let mut cargo_args = vec!["--target", COMPILATION_TARGET];
let mut cargo_args = vec!["--verbose", "--target", COMPILATION_TARGET];
let cargo_feature_args = {
let mut feat_args = vec![];
if let Some(features) = args.features.as_ref() {
Expand Down

0 comments on commit e91bd03

Please sign in to comment.