From 465a0e4704d8c78f415cf26d6ee310676735dfad Mon Sep 17 00:00:00 2001 From: Ryan Pessa Date: Wed, 9 Dec 2015 17:16:42 -0600 Subject: [PATCH] show full output from failed commands --- pythonforandroid/toolchain.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pythonforandroid/toolchain.py b/pythonforandroid/toolchain.py index a99646f767..e506eb73bf 100755 --- a/pythonforandroid/toolchain.py +++ b/pythonforandroid/toolchain.py @@ -49,6 +49,10 @@ from collections import defaultdict +# monkey patch to show full output +sh.ErrorReturnCode.truncate_cap = 999999 + + class colorama_shim(object): def __init__(self):