diff options
Diffstat (limited to 'plugins/warp/src/matcher.rs')
| -rw-r--r-- | plugins/warp/src/matcher.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/warp/src/matcher.rs b/plugins/warp/src/matcher.rs index eb9e2341..52180777 100644 --- a/plugins/warp/src/matcher.rs +++ b/plugins/warp/src/matcher.rs @@ -64,7 +64,11 @@ impl Matcher { // Get core signatures for the given platform let install_dir = binaryninja::install_directory().unwrap(); #[cfg(target_os = "macos")] - let root_core_sig_dir = install_dir.parent().unwrap().join("Resources").join("signatures"); + let root_core_sig_dir = install_dir + .parent() + .unwrap() + .join("Resources") + .join("signatures"); #[cfg(not(target_os = "macos"))] let root_core_sig_dir = install_dir.join("signatures"); let plat_core_sig_dir = root_core_sig_dir.join(&platform_name); |
