Fix Mac dev setup issues [#5442].
A trailing slash in devtools/compile_translations.sh caused that script to fail because the parameter to pybabel's -l option ended up blank instead of containing the language code. A few files and directories were missing from .gitignore and hence wound up in the list of local changes to be committed.
This commit is contained in:
committed by
Ben Sturmfels
parent
5224d700dd
commit
85107918b5
@@ -35,7 +35,7 @@ fi
|
||||
##
|
||||
## List of uncompilable translations: Lojban (jbo), Interlingua (ia)
|
||||
|
||||
for file in `find mediagoblin/i18n/ -name "*.po"`; do
|
||||
for file in `find mediagoblin/i18n -name "*.po"`; do
|
||||
if [ "$file" != "mediagoblin/i18n/jbo/mediagoblin.po" ] && \
|
||||
[ "$file" != "mediagoblin/i18n/ia/mediagoblin.po" ] && \
|
||||
[ "$file" != "mediagoblin/i18n/templates/en/mediagoblin.po" ]; then
|
||||
|
||||
Reference in New Issue
Block a user