Skip to content

Commit

Permalink
Fix the way translation resources are imported
Browse files Browse the repository at this point in the history
  • Loading branch information
rm3l committed Jun 25, 2017
1 parent b198fac commit 8726791
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tools/import-translations-github.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,9 @@ if [ "$CIRCLE_PULL_REQUEST" == "" ]; then

# import listing graphics
for playLangPath in ./maoni-sample/src/main/play/*-*; do
mkdir -p ${playLangPath}/listing
cp -r ./maoni-sample/src/main/play/en-US/listing/* ${playLangPath}/listing/
for d in featureGraphic icon phoneScreenshots promoGraphic sevenInchScreenshots tenInchScreenshots tvBanner tvScreenshots; do
cp -r ./maoni-sample/src/main/play/en-US/listing/${d} ${playLangPath}/listing/ || true
done
done

#add, commit and push files
Expand Down

0 comments on commit 8726791

Please sign in to comment.