浏览代码

Fix old directory name in i18n/bin/build-translated-result.sh

Related to https://github.com/spantaleev/matrix-docker-ansible-deploy/pull/3891
pull/3892/head
Slavi Pantaleev 1年前
父节点
当前提交
a146f2199b
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      i18n/bin/build-translated-result.sh

+ 2
- 2
i18n/bin/build-translated-result.sh 查看文件

@@ -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>


正在加载...
取消
保存