1#!/bin/sh 2# 3# This script is for pulling the latest translations from Translation Project 4# 5# Assumption: executed from the top level xkeyboard-config directory 6# 7 8project=xkeyboard-config 9 10if [ ! -d po ] ; then 11 echo "No po subdirectory in the current directory, the script has to be executed from the top level $project directory" 12 exit 1 13fi 14 15rsync -Lrtvz translationproject.org::tp/latest/$project/ po 16