Compare commits

...

1 commit

Author SHA1 Message Date
Ben Rousch
c807cd3171 Changed timeout to 600s to avoid premature end for android tools install 2014-04-08 21:34:41 -04:00

View file

@ -297,7 +297,7 @@ class TargetAndroid(Target):
self.android_cmd, packages,
cwd=self.buildozer.global_platform_dir))
while True:
index = child.expect([EOF, '[y/n]: '])
index = child.expect([EOF, '\[y/n\]:'], timeout=600)
if index == 0:
break
child.sendline('y')