fix: move translation jsons to right folder (#3050)

This commit is contained in:
Richard Shiue 2023-08-01 14:19:45 +08:00 committed by GitHub
parent 70963a55f1
commit 5e2ed56f5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,8 +11,10 @@ cd "$(dirname "$0")"
cd ../../../appflowy_flutter
# copy the resources/translations folder to
# the appflowy_flutter/assets/translation directory
cp -rf ../resources/translations/ assets/translations/
# the appflowy_flutter/assets/translation directory
rm -rf assets/translations/
mkdir -p assets/translations/
cp -f ../resources/translations/*.json assets/translations/
flutter packages pub get