#!/bin/bash

unset LC_CTYPE
unset LC_ALL
unset LANG

REPOS="
	current
	testing
	experimental
	customer
	upload
"

for r in $REPOS ; do
    ( cd $r && ./update )
done

git add -A && git commit -m "automatic update" && ( for r in `git remote` ; do git push $r zmpkg ; done )
