Skip to content

Commit

Permalink
cli: Skip IDL checks if --no-idl option is passed (#3093)
Browse files Browse the repository at this point in the history
  • Loading branch information
acheroncrypto authored Jul 19, 2024
1 parent 1177174 commit bdee6fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ The minor version will be incremented upon a breaking change and the patch versi
- lang: Make `InitSpace` support unnamed & unit structs ([#3084](https://github.com/coral-xyz/anchor/pull/3084)).
- lang: Fix using `owner` constraint with `Box`ed accounts ([#3087](https://github.com/coral-xyz/anchor/pull/3087)).
- lang: Add a sanity check for unimplemented token extensions ([#3090](https://github.com/coral-xyz/anchor/pull/3090)).
- cli: Skip IDL checks if `--no-idl` option is passed ([#3093](https://github.com/coral-xyz/anchor/pull/3093)).

### Breaking

Expand Down
5 changes: 3 additions & 2 deletions cli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1819,8 +1819,6 @@ fn _build_rust_cwd(
arch: &ProgramArch,
cargo_args: Vec<String>,
) -> Result<()> {
check_idl_build_feature().ok();

let exit = std::process::Command::new("cargo")
.arg(arch.build_subcommand())
.args(cargo_args.clone())
Expand Down Expand Up @@ -2683,6 +2681,7 @@ fn idl_build(
.path
}
};
check_idl_build_feature().ok();
let idl = anchor_lang_idl::build::build_idl_with_cargo_args(
program_path,
cfg.features.resolution,
Expand Down Expand Up @@ -2735,6 +2734,8 @@ in `{path}`."#
));
}

check_idl_build_feature().ok();

anchor_lang_idl::build::build_idl_with_cargo_args(
std::env::current_dir()?,
cfg.features.resolution,
Expand Down

0 comments on commit bdee6fb

Please sign in to comment.