Skip to content

Commit 3f8eb7a

Browse files
Merge pull request #772 from nextcloud/fix/ex_app_handle_translations
fix(translationtool): include only .po translation files for ExApps
2 parents 1849fb1 + dfb27af commit 3f8eb7a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

translations-app/handleAppTranslations.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,9 +138,9 @@ do
138138
# create git commit and push it
139139
git add l10n/*.js l10n/*.json
140140

141-
# for ExApps, we need to include .po,.mo translation files as well
141+
# for ExApps, we need to include .po translation files as well
142142
if [ "$IS_EX_APP" = "true" ]; then
143-
git add translationfiles/*.po translationfiles/*.mo
143+
git add translationfiles/*.po
144144
fi
145145

146146
git commit -am "fix(l10n): Update translations from Transifex" -s || true

0 commit comments

Comments
 (0)