Skip to content

Commit

Permalink
Tell clippy to allow unused_imports for indirectly used std::io::Writ…
Browse files Browse the repository at this point in the history
…e in linux bundler; erase empty else branch causing warning in macOS bundler
  • Loading branch information
johncarmack1984 committed Dec 4, 2024
1 parent 9f51bbf commit 6ae98c4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions crates/tauri-bundler/src/bundle/linux/appimage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ use crate::{
Settings,
};
use anyhow::Context;
#[allow(unused_imports)]
use std::{
fs,
io::Write,
Expand Down
1 change: 0 additions & 1 deletion crates/tauri-bundler/src/bundle/macos/dmg/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,6 @@ pub fn bundle_project(settings: &Settings, bundles: &[Bundle]) -> crate::Result<
if let Some(value) = env::var_os("CI") {
if value == "true" {
bundle_dmg_cmd.arg("--skip-jenkins");
} else {
}
}
}
Expand Down

0 comments on commit 6ae98c4

Please sign in to comment.