Skip to content

Commit

Permalink
chore(mantle): fix lint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
blake-mealey committed Dec 16, 2023
1 parent e2ecf2b commit 6fa367a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mantle/mantle/src/commands/diff.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,11 +132,11 @@ pub async fn run(
}
}

return 0;
0
}
Err(e) => {
logger::end_action(Paint::red(e));
return 1;
1
}
}
}
1 change: 1 addition & 0 deletions mantle/rbx_mantle/src/resource_graph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -614,6 +614,7 @@ where
);
} else {
let dependencies = resource.get_dependencies();
#[allow(clippy::iter_overeager_cloned)]
let changed_dependencies: Vec<_> = dependencies
.iter()
.cloned()
Expand Down

1 comment on commit 6fa367a

@vercel
Copy link

@vercel vercel bot commented on 6fa367a Dec 16, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.