#! /bin/sh
#
# Set proper umask value when calling subversion commands.
# Created for handling svnserve, might be used with other commands.

SUFFIX=".bin"
UMASK="002"
BINARY="$(dirname $(realpath $0))/${0##*/}$SUFFIX"

umask "$UMASK" && exec $BINARY "$@"
