local target="${1}"
local key="${2}"
env LC_ALL=C svn info ${options} --username "${ESVN_USER}" --password "${ESVN_PASSWORD}" "${target}" \
if [[ -n "${ESVN_USER}" ]]; then
| grep -i "^${key}" \
| cut -d" " -f2-
else
env LC_ALL=C svn info ${options} "${target}" \
fi
}
## -- subversion__get_repository_uri() --------------------------------------- #