diff options
| author | Narayan Kamath <narayan@google.com> | 2014-06-03 09:58:23 +0000 |
|---|---|---|
| committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-06-03 09:58:24 +0000 |
| commit | 4e26c95a6363da4885bb9178c9d42c273b357043 (patch) | |
| tree | 9bb3d5cde72d6efabc892cc5c8fcedc00bafb528 /adb | |
| parent | 676f7d509d683921335ccddc2f267a73eb5c60c6 (diff) | |
| parent | a284f8b214a8b92775534922ac24f13498d3af0a (diff) | |
| download | system_core-4e26c95a6363da4885bb9178c9d42c273b357043.tar.gz system_core-4e26c95a6363da4885bb9178c9d42c273b357043.tar.bz2 system_core-4e26c95a6363da4885bb9178c9d42c273b357043.zip | |
Merge "Skip the "--abi" flag on "adb install" if present."
Diffstat (limited to 'adb')
| -rw-r--r-- | adb/commandline.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/adb/commandline.c b/adb/commandline.c index 3970ab155..18dc6e0fa 100644 --- a/adb/commandline.c +++ b/adb/commandline.c @@ -1743,6 +1743,8 @@ int install_app(transport_type transport, char* serial, int argc, char** argv) } else if (!strcmp(argv[i], "--key")) { verify_apk = 0; i++; + } else if (!strcmp(argv[i], "--abi")) { + i++; } } |
