cryptonas/scripts/fetch_po_files.sh

15 lines
592 B
Bash
Raw Normal View History

2006-12-01 10:16:46 +01:00
#!/bin/sh
# this script fetches all cbx po files and copies them into thoraxs pootle dir
BASEPATH="/home/cryptobox/cbx-svn/trunk"
TARGETPATH="/var/lib/pootle/cryptobox"
mkdir -p ${TARGETPATH}/cryptobox-server
mkdir -p ${TARGETPATH}/plugins
#echo "copy cryptobox-server"
cp -r ${BASEPATH}/intl/* ${TARGETPATH}/cryptobox-server
for i in `ls ${BASEPATH}/plugins`; do
#[ -d ${BASEPATH}/plugins/${i}/intl ] && echo "copy $i"
[ -d ${BASEPATH}/plugins/${i}/intl ] && mkdir ${TARGETPATH}/plugins/${i} && cp -r ${BASEPATH}/plugins/${i}/intl ${TARGETPATH}/$i
done
chown -R pootle. ${TARGETPATH}