#!/bin/sh
if test $# -gt 0; then
	svn revert --depth=infinity "$@"
else
	svn revert --depth=infinity .
fi

