From b11a5be7817b3422af753d0c78dcb749067b239a Mon Sep 17 00:00:00 2001 From: Min RK Date: Fri, 8 Apr 2016 16:35:23 -0700 Subject: [PATCH] disable npm progress when installing apparently faster, but should also fix unicode errors --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a34b421b..b5a5c490 100755 --- a/setup.py +++ b/setup.py @@ -166,7 +166,7 @@ class Bower(BaseCommand): if self.should_run_npm(): print("installing build dependencies with npm") - check_call(['npm', 'install'], cwd=here) + check_call(['npm', 'install', '--progress=false'], cwd=here) os.utime(self.node_modules) env = os.environ.copy()