aboutsummaryrefslogtreecommitdiff
path: root/bootstrap
blob: 1bce04f6c84fde8e0a05e9e2628799897525a04e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
set -e
podir=po

echo "Updating po files"
rsync --delete --include '*.po' --exclude '*' -Lrtvz \
      'translationproject.org::tp/latest/wyslij-po/' $podir
find $po -mindepth 1 -maxdepth 1 -name '*.po' | sed -e 's|.*/||' -e 's|\.po$||' > $podir/LINGUAS

echo "Bootstrapping the project"
autoreconf -f -i -s
if [ ! -d $porefdir ]; then
    mkdir $porefdir
fi

Return to:

Send suggestions and report system problems to the System administrator.