update-prod-static: Fix deploy path for language_options.json.

This commit is contained in:
Tim Abbott 2016-07-13 14:05:03 -07:00
parent baeaf0f870
commit 599f12f94f
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ subprocess.check_call(['mv', os.path.join(settings.STATIC_ROOT, 'source-map'),
# Move language_options.json to the production release
subprocess.check_call(['mv', 'static/locale/language_options.json',
'prod-static/serve/locale/language_options.json'],
os.path.join(settings.STATIC_ROOT, 'locale/language_options.json')],
stdout=fp, stderr=fp)
fp.close()