pull_translations.sh revision 46185892
146185892Smrg#!/bin/sh 246185892Smrg# 346185892Smrg# This script is for pulling the latest translations from Translation Project 446185892Smrg# 546185892Smrg# Assumption: executed from the top level xkeyboard-config directory 646185892Smrg# 746185892Smrg 846185892Smrgproject=xkeyboard-config 946185892Smrg 1046185892Smrgif [ ! -d po ] ; then 1146185892Smrg echo "No po subdirectory in the current directory, the script has to be executed from the top level $project directory" 1246185892Smrg exit 1 1346185892Smrgfi 1446185892Smrg 1546185892Smrgrsync -Lrtvz translationproject.org::tp/latest/$project/ po 16