chore: linting

This commit is contained in:
zhom
2025-08-11 06:06:10 +04:00
parent d48e26c7eb
commit d9e3e1f3ef
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -177,6 +177,8 @@ mod linux {
vec![ vec![
browser_subdir.join("firefox"), browser_subdir.join("firefox"),
browser_subdir.join("firefox-bin"), browser_subdir.join("firefox-bin"),
install_dir.join("firefox"),
install_dir.join("firefox-bin"),
] ]
} }
BrowserType::MullvadBrowser => { BrowserType::MullvadBrowser => {
+1 -1
View File
@@ -712,7 +712,7 @@ impl Extractor {
fs::copy(appimage_path, &dest_file)?; fs::copy(appimage_path, &dest_file)?;
// Set executable permissions // Set executable permissions
self.set_executable_permissions(&dest_file).await?; self.set_executable_permissions_recursive(&dest_file).await?;
Ok(dest_file) Ok(dest_file)
} }