Skip to content

Commit

Permalink
Fix old directory name in i18n/bin/build-translated-result.sh
Browse files Browse the repository at this point in the history
Related to #3891
  • Loading branch information
spantaleev committed Dec 20, 2024
1 parent 25601d9 commit a146f21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions i18n/bin/build-translated-result.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ if [ -d ${base_path}/i18n/translations/${LANGUAGE} ]; then
fi

# Make sure the `translations/` directory exists
if [ ! -d ${base_path}/i18n/translated ]; then
mkdir -p ${base_path}/i18n/translated
if [ ! -d ${base_path}/i18n/translations ]; then
mkdir -p ${base_path}/i18n/translations
fi

# Relocate the built result to translations/<language>
Expand Down

0 comments on commit a146f21

Please sign in to comment.