mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-07 03:50:11 +02:00
[yabridgectl] Fix clippy lints
This commit is contained in:
@@ -239,7 +239,7 @@ pub fn do_sync(config: &mut Config, options: &SyncOptions) -> Result<()> {
|
|||||||
// show a warning if we come across any duplicates.
|
// show a warning if we come across any duplicates.
|
||||||
let already_installed_architectures = yabridge_vst3_bundles
|
let already_installed_architectures = yabridge_vst3_bundles
|
||||||
.entry(module.target_bundle_home())
|
.entry(module.target_bundle_home())
|
||||||
.or_insert_with(|| BTreeSet::new());
|
.or_insert_with(BTreeSet::new);
|
||||||
if !already_installed_architectures.insert(module.architecture()) {
|
if !already_installed_architectures.insert(module.architecture()) {
|
||||||
eprintln!(
|
eprintln!(
|
||||||
"{}",
|
"{}",
|
||||||
|
|||||||
Reference in New Issue
Block a user