mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
tools: Fix missing comma in collectstatic configuration.
It appears that this code did the right thing despite being written wrong, probably due to whatever `manage.py collectstatic` does in its argument parsing. But in any case, we should make the code read how it's intended.
This commit is contained in:
@@ -81,7 +81,7 @@ for css_file in CSS_FILES:
|
||||
|
||||
# Collect the files that we're going to serve; this creates prod-static/serve.
|
||||
run(['./manage.py', 'collectstatic', '--no-default-ignore',
|
||||
'--noinput', '-i', 'assets', '-i' 'node_modules', '-i', 'styles', '-i', 'templates'],
|
||||
'--noinput', '-i', 'assets', '-i', 'node_modules', '-i', 'styles', '-i', 'templates'],
|
||||
stdout=fp, stderr=fp)
|
||||
|
||||
if not settings.PRODUCTION:
|
||||
|
Reference in New Issue
Block a user