#!/bin/bash

# Simple script to update the installation of the transifex client from
# the latest available source

set -e
set -x

cd /srv/translation.torproject.org/transifex-client/repository
hg pull -q
hg update -q
/srv/translation.torproject.org/transifex-client/bin/python setup.py install > /dev/null

