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:
Tim Abbott
2019-03-04 08:28:45 -08:00
parent dc24efde24
commit 500b5cdaf1

View File

@@ -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: