#!/bin/sh


. `dirname "$0"`/cfg/common
. `dirname "$0"`/cfg/`basename "$0"`

## echo "`basename $0`: Updating Debian Installer translations..."

cd $DI
svn -q up
if svn st 2>&1 | grep -q -E "^C"; then
	echo "There is an SVN conflict in $i"
fi

# Fix permissions: g+w on everything so that (for instance)
# members of the pootle group may commit, including the pootle user
find . -print0 | xargs --null chmod g+w 2>/dev/null || true

