Skip to content

Commit

Permalink
clone
Browse files Browse the repository at this point in the history
  • Loading branch information
rauljordan committed Dec 12, 2024
1 parent da7f1b1 commit 92f891d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/src/check.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ impl CheckConfig {
let toolchain_channel = extract_toolchain_channel(&toolchain_file_path)?;
let rust_stable = !toolchain_channel.contains("nightly");
let mut cfg = BuildConfig::new(rust_stable);
cfg.features = self.common_cfg.features;
cfg.features = self.common_cfg.features.clone();
let wasm = project::build_dylib(cfg.clone())?;
let project_hash =
project::hash_project(self.common_cfg.source_files_for_project_hash.clone(), cfg)?;
Expand Down

0 comments on commit 92f891d

Please sign in to comment.