We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2f0ed5f + 836bd8b commit 46159a6Copy full SHA for 46159a6
1 file changed
src-tauri/src/process/post_extract.rs
@@ -12,6 +12,7 @@ pub(crate) struct PostExtractFixups {
12
}
13
14
pub(crate) fn apply_post_extract_fixups(root: &Path) -> PostExtractFixups {
15
+ #[allow(unused_mut)]
16
let mut out = PostExtractFixups::default();
17
#[cfg(target_os = "macos")]
18
{
@@ -83,6 +84,7 @@ fn visit_app_bundles(path: &Path, on_app: &mut dyn FnMut(&Path)) {
83
84
85
86
87
+#[cfg(unix)]
88
const MAX_EXECUTE_SCAN_ENTRIES: u32 = 50_000;
89
90
/// Grant `u+x` to extracted binaries/scripts that 7-Zip left non-executable
0 commit comments