Remove `android pullimage` command

Instead, run `images pull android`.
This commit is contained in:
Régis Behmo 2020-11-16 12:18:54 +01:00
parent 21231a15d0
commit df2e977b35
2 changed files with 1 additions and 8 deletions

View File

@ -4,6 +4,7 @@ Note: Breaking changes between versions are indicated by "💥".
## Unreleased
- 💥[Improvement] Remove `tutor android pullimage` command. Instead, run `tutor images pull android`.
- [Bugfix] Fix `config save` on Windows.
- [Bugfix] Fix platform checking in user ID function

View File

@ -24,13 +24,6 @@ def build(context, mode):
)
@click.command(help="Pull the docker image")
@click.pass_obj
def pullimage(context):
config = tutor_config.load(context.root)
utils.docker("pull", config["DOCKER_IMAGE_ANDROID"])
def build_command(config, target):
gradle_target = {
"debug": "assembleProdDebuggable",
@ -58,4 +51,3 @@ def docker_run(root, command):
android.add_command(build)
android.add_command(pullimage)