diff --git a/tools/update-prod-static b/tools/update-prod-static index f3b0207a7a..c3c592bb02 100755 --- a/tools/update-prod-static +++ b/tools/update-prod-static @@ -52,11 +52,12 @@ run(['./tools/setup/generate_zulip_bots_static_files.py'], stdout=fp, stderr=fp) run(['./tools/setup/build_pygments_data'], stdout=fp, stderr=fp) # Create webpack bundle -run(['./tools/webpack'], stdout=fp, stderr=fp) +run(['./tools/webpack', '--quiet'], stdout=fp, stderr=fp) # Collect the files that we're going to serve; this creates prod-static/serve. run([ './manage.py', 'collectstatic', '--no-default-ignore', + '-v0', '--noinput', '-i', 'assets', '-i', 'emoji-styles', @@ -67,7 +68,7 @@ run([ ], stdout=fp, stderr=fp) # Compile translation strings to generate `.mo` files. -run(['./manage.py', 'compilemessages'], stdout=fp, stderr=fp) +run(['./manage.py', 'compilemessages', '-v0'], stdout=fp, stderr=fp) # Needed if PRODUCTION os.makedirs('prod-static', exist_ok=True)