disable npm progress when installing

apparently faster, but should also fix unicode errors
This commit is contained in:
Min RK
2016-04-08 16:35:23 -07:00
parent 8b6950055b
commit b11a5be781

View File

@@ -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()