From cca4464e07624c24a6c460fd526662a345589640 Mon Sep 17 00:00:00 2001 From: KATO Tomoyuki Date: Mon, 4 Jul 2016 18:28:59 +0900 Subject: [PATCH] fix build lang script We do not have the original pot file into git repository at now. Change-Id: I5dcee6ff03fcd1c601045d6cfbe7d47669a8986b --- tools/buildlang.sh | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/tools/buildlang.sh b/tools/buildlang.sh index 111786fa..c94862a1 100755 --- a/tools/buildlang.sh +++ b/tools/buildlang.sh @@ -45,10 +45,6 @@ for locale in `find ${DIRECTORY}/source/locale/ -maxdepth 1 -type d` ; do # prepare all translation resources for pot in ${DIRECTORY}/source/locale/*.pot ; do - # skip master translation resource itself - if [ ${pot} = "${DIRECTORY}/source/locale/${DOCNAME}.pot" ] ; then - continue - fi # get filename potname=$(basename $pot) resname=${potname%.pot} @@ -86,8 +82,5 @@ for locale in `find ${DIRECTORY}/source/locale/ -maxdepth 1 -type d` ; do git checkout -- ${DIRECTORY}/source/locale/${language}/LC_MESSAGES/${DOCNAME}.po done -# remove newly created files -git clean -f -q ${DIRECTORY}/source/locale/*.pot -# revert changes to po file -git reset -q ${DIRECTORY}/source/locale/${DOCNAME}.pot -git checkout -- ${DIRECTORY}/source/locale/${DOCNAME}.pot +# remove newly created pot files +rm -f ${DIRECTORY}/source/locale/*.pot