File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -214,6 +214,13 @@ if [ "${build_classical}" == "1" ]; then
214
214
zip -q -9 " ${reldir} /${binname} .zip" ${binname}
215
215
rm ${binname}
216
216
217
+ # ICU data
218
+ if [ -f ${basedir} /git/thirdparty/icu4c/icudt_godot.dat ]; then
219
+ cp ${basedir} /git/thirdparty/icu4c/icudt_godot.dat ${templatesdir} /icudt_godot.dat
220
+ else
221
+ echo " icudt_godot.dat" not found.
222
+ fi
223
+
217
224
# Templates
218
225
cp out/linux/x86_64/templates/godot.linuxbsd.template_release.x86_64 ${templatesdir} /linux_release.x86_64
219
226
cp out/linux/x86_64/templates/godot.linuxbsd.template_debug.x86_64 ${templatesdir} /linux_debug.x86_64
@@ -398,6 +405,13 @@ if [ "${build_mono}" == "1" ]; then
398
405
zip -r -q -9 " ${reldir_mono} /${binbasename} _arm32.zip" ${binbasename} _arm32
399
406
rm -rf ${binbasename} _arm32
400
407
408
+ # ICU data
409
+ if [ -f ${basedir} /git/thirdparty/icu4c/icudt_godot.dat ]; then
410
+ cp ${basedir} /git/thirdparty/icu4c/icudt_godot.dat ${templatesdir_mono} /icudt_godot.dat
411
+ else
412
+ echo " icudt_godot.dat" not found.
413
+ fi
414
+
401
415
# Templates
402
416
cp out/linux/x86_64/templates-mono/godot.linuxbsd.template_debug.x86_64.mono ${templatesdir_mono} /linux_debug.x86_64
403
417
cp out/linux/x86_64/templates-mono/godot.linuxbsd.template_release.x86_64.mono ${templatesdir_mono} /linux_release.x86_64
You can’t perform that action at this time.
0 commit comments