chore: linting

This commit is contained in:
zhom
2026-03-13 12:57:01 +04:00
parent 95e5dbb84a
commit 0553f76f71
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -256,7 +256,7 @@ mod linux {
// - Firefox/Firefox Developer on Linux often extract to: install_dir/firefox/firefox
// - Some archives may extract directly under: install_dir/firefox or install_dir/firefox-bin
// - For some flavors we may have: install_dir/<browser_type>/<binary>
let browser_subdir = install_dir.join(browser_type.as_str());
let _browser_subdir = install_dir.join(browser_type.as_str());
// Try common firefox executable locations (nested and flat)
let possible_executables = match browser_type {
@@ -322,7 +322,7 @@ mod linux {
// install_dir/<browser>/<binary>
// However, Firefox Developer tarballs often extract to a "firefox" subfolder
// rather than "firefox-developer". Support both layouts.
let browser_subdir = install_dir.join(browser_type.as_str());
let _browser_subdir = install_dir.join(browser_type.as_str());
let possible_executables = match browser_type {
BrowserType::Camoufox => {
+1 -1
View File
@@ -6,7 +6,7 @@ use crate::browser::BrowserType;
use crate::downloader::DownloadProgress;
use crate::events;
#[cfg(any(target_os = "macos", target_os = "windows"))]
#[cfg(target_os = "macos")]
use std::process::Command;
#[cfg(target_os = "macos")]