From 4e1fb5d7d133674f0c2b0d4187db8dc2b9565f09 Mon Sep 17 00:00:00 2001 From: zhangsz Date: Wed, 22 Jan 2025 21:15:07 +0800 Subject: [PATCH] fix: copy issue --- bin/copy.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/copy.sh b/bin/copy.sh index 161049d..fc7db54 100755 --- a/bin/copy.sh +++ b/bin/copy.sh @@ -40,6 +40,9 @@ echo "done" # copy i18n message resuorces echo -n "Begin copy i18n message resources ... " +if [ ! -d ${BuildDockerDir}/conf/default/i18n ]; then + mkdir -p ${BuildDockerDir}/conf/default/i18n +fi cp -rf ${I18nResourcesDir}/i18n/* ${BuildDockerDir}/conf/default/i18n/ echo "done"