Skip to content

Commit

Permalink
update clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
nkysg committed Dec 13, 2024
1 parent bb23965 commit d7dbc25
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions vm/move-package-manager/src/package.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,10 @@ pub fn handle_package_commands(
extended_checks::configure_extended_checks_for_unit_test();

let mut build_config = move_args.build_config.clone();
build_config.compiler_config.known_attributes =
extended_checks::get_all_attribute_names().clone();
build_config
.compiler_config
.known_attributes
.clone_from(extended_checks::get_all_attribute_names());
c.execute(
move_args.package_path,
build_config,
Expand Down

0 comments on commit d7dbc25

Please sign in to comment.