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.
1 parent 99d1539 commit aeefb2fCopy full SHA for aeefb2f
cli/standalone/binary.rs
@@ -180,7 +180,7 @@ pub fn is_standalone_binary(exe_path: &Path) -> bool {
180
let Ok(data) = std::fs::read(exe_path) else {
181
return false;
182
};
183
-
+ dbg!(&data[0..5], libsui::utils::is_macho(&data));
184
libsui::utils::is_elf(&data)
185
|| libsui::utils::is_pe(&data)
186
|| libsui::utils::is_macho(&data)
0 commit comments