diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2018-07-02 16:56:49 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2018-07-02 19:00:48 +0200 |
commit | c0d1b8e80861e75f7f3e76660675e88d963b81bb (patch) | |
tree | 6d8ab5ad13609db1658e4713857942fcdcf37d27 /python/servo/bootstrap_commands.py | |
parent | eecbe837500270f530e943a1b6bb718031156dd6 (diff) | |
download | servo-c0d1b8e80861e75f7f3e76660675e88d963b81bb.tar.gz servo-c0d1b8e80861e75f7f3e76660675e88d963b81bb.zip |
Android: increase emulator disk size, for debug builds
Avoid INSTALL_FAILED_INSUFFICIENT_STORAGE on install.
Diffstat (limited to 'python/servo/bootstrap_commands.py')
-rw-r--r-- | python/servo/bootstrap_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/bootstrap_commands.py b/python/servo/bootstrap_commands.py index 07c31c660cd..699981ff6d1 100644 --- a/python/servo/bootstrap_commands.py +++ b/python/servo/bootstrap_commands.py @@ -158,7 +158,7 @@ class MachCommands(CommandBase): process.stdin.write("no\n") assert process.wait() == 0 with open(path.join(toolchains, "avd", avd_name, "config.ini"), "a") as f: - f.write("disk.dataPartition.size=1G\n") + f.write("disk.dataPartition.size=2G\n") @Command('update-hsts-preload', description='Download the HSTS preload list', |