diff options
author | 2023-10-26 13:10:52 +0000 | |
---|---|---|
committer | 2023-10-26 13:10:52 +0000 | |
commit | 15181c7139c39fb2201c94b5c551ee95318e17f2 (patch) | |
tree | 31a245aee3768a66407560ca8e474ee133b4c796 | |
parent | 04e59b174f08920d7b39982b8a4b13d2385928ea (diff) | |
parent | 4c4a9c3eebf99c47e77c2f8eaea487ec2745007a (diff) |
Merge "Replace `--dex-api` with `signature-to-dex` instead" into main
-rwxr-xr-x | api/gen_combined_removed_dex.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/gen_combined_removed_dex.sh b/api/gen_combined_removed_dex.sh index 71f366a6aae2..e0153f7c1091 100755 --- a/api/gen_combined_removed_dex.sh +++ b/api/gen_combined_removed_dex.sh @@ -6,6 +6,6 @@ shift 2 # Convert each removed.txt to the "dex format" equivalent, and print all output. for f in "$@"; do - "$metalava_path" "$f" --dex-api "${tmp_dir}/tmp" + "$metalava_path" signature-to-dex "$f" "${tmp_dir}/tmp" cat "${tmp_dir}/tmp" done |