Fix Mac dev setup issues [#5442].
authorJeremy Bowman <jbowman@safaribooksonline.com>
Fri, 18 Mar 2016 20:46:31 +0000 (16:46 -0400)
committerBen Sturmfels <ben@sturm.com.au>
Wed, 13 May 2020 03:55:00 +0000 (13:55 +1000)
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.

.gitignore
AUTHORS
devtools/compile_translations.sh

index 63c47d4d01a0427312b0fefd5de452ee77eab74a..8ffffa5127b5328e928d190aa8b0926f2bea37a8 100644 (file)
@@ -42,6 +42,7 @@
 /aclocal.m4
 
 # Tests
+/mediagoblin/tests/.cache/
 /mediagoblin/tests/user_dev/
 
 # File extensions
@@ -65,3 +66,7 @@ venv*
 /extlib/tinymce/
 /extlib/video.js/
 /extlib/videojs-resolution-switcher
+
+# Mac files
+.DS_Store
+.Python
diff --git a/AUTHORS b/AUTHORS
index 632e8f4ea0c3482ff121ac131c2f3ac68bfb3974..09602f8e61d2b4b970767df62c6f9cae7668a449 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -54,6 +54,7 @@ Thank you!
 * Jaakko Luttinen
 * Jakob Kramer
 * Jef van Schendel
+* Jeremy Bowman
 * Jeremy Pope
 * jerome
 * Jessica Tallon
index 787a455424244a96a1bca0cbd0ad69395ed5519e..1ef9d97945eca03ca23782b167243fddb115eebe 100755 (executable)
@@ -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