Skip to content

Commit

Permalink
Fix the arm download name
Browse files Browse the repository at this point in the history
  • Loading branch information
dzervas authored Jul 27, 2024
1 parent 0ef8948 commit 575cb7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frida-build/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ fn download_and_use_devkit_internal(
if target_arch == "aarch64" {
target_arch = "arm64".to_string();
} else if target_arch == "arm" {
target_arch = "armhf".to_string();
target_arch = "arm".to_string();
} else if target_arch == "i686" {
target_arch = "x86".to_string();
}
Expand Down

0 comments on commit 575cb7a

Please sign in to comment.