#!/bin/bash # READ-ONLY REPO echo >&2 echo "This repository has moved to a new location. This project was upgraded to the new SourceForge platform, so a one-time move of this repo was performed. There are instructions for switching to the new location below. You can no longer commit to the repo at this location." >&2 echo >&2 echo "Please update your configuration with the following command:" >&2 echo >&2 echo " svn relocate \"svn+ssh://USERNAME@svn.code.sf.net/p/quattor/svn/\"" >&2 echo >&2 echo "Older versions of SVN may need to use the command:" >&2 echo >&2 echo " svn switch --relocate OLD_URL \"svn+ssh://USERNAME@svn.code.sf.net/p/quattor/svn/\"" >&2 echo >&2 echo "where OLD_URL is the URL from the output of svn info." >&2 echo >&2 echo "If you receive an error regarding mismatched UUIDs, or \"Can't find entry\" see" >&2 echo "http://sourceforge.net/p/forge/community-docs/SVN%20and%20project%20upgrades/" >&2 echo "for instructions on how to resolve it." >&2 echo >&2 echo "More information available at: https://sourceforge.net/p/forge/community-docs/Repository%20Upgrade%20FAQ/" >&2 exit 1