diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2018-07-12 14:53:32 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2018-07-12 16:01:28 +0200 |
commit | 8dc245793113637429212e2c6348e45c0f39d2fd (patch) | |
tree | 766058a179fe3ab993b0510862ae93f36c7b1402 /python/servo/bootstrap_commands.py | |
parent | 4dfb41fdb3c085607a83d200d12cff72c1048128 (diff) | |
download | servo-8dc245793113637429212e2c6348e45c0f39d2fd.tar.gz servo-8dc245793113637429212e2c6348e45c0f39d2fd.zip |
Remove unused --update parameter to ./mach bootstrap-android
Diffstat (limited to 'python/servo/bootstrap_commands.py')
-rw-r--r-- | python/servo/bootstrap_commands.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/python/servo/bootstrap_commands.py b/python/servo/bootstrap_commands.py index 699981ff6d1..3be7a208815 100644 --- a/python/servo/bootstrap_commands.py +++ b/python/servo/bootstrap_commands.py @@ -58,10 +58,7 @@ class MachCommands(CommandBase): @Command('bootstrap-android', description='Install the Android SDK and NDK.', category='bootstrap') - @CommandArgument('--update', - action='store_true', - help='Run SDK component install and emulator image creation again') - def bootstrap_android(self, update=False): + def bootstrap_android(self): ndk = "android-ndk-r12b-{system}-{arch}" tools = "sdk-tools-{system}-4333796" |