Also send message to stderr.

Probably only need to send to stderr, but sending to both stdout and stderr
just in case.


[SVN r86795]
This commit is contained in:
Daniel James 2013-11-23 12:22:28 +00:00
parent 46c7158bf6
commit 65d4bbaaec

View file

@ -58,12 +58,12 @@
# Make subversion read-only. I left the rest of the script in place
# in case it needs to reactivated.
echo "This Subversion repository is no longer in active use. "
echo
echo "It has been superseded by a Git super-project repository "
echo "and individual Git repositories for each Boost library. "
echo
echo "See: https://github.com/boostorg"
echo "This Subversion repository is no longer in active use. " | tee /dev/stderr
echo | tee /dev/stderr
echo "It has been superseded by a Git super-project repository " | tee /dev/stderr
echo "and individual Git repositories for each Boost library. " | tee /dev/stderr
echo | tee /dev/stderr
echo "See: https://github.com/boostorg" | tee /dev/stderr
exit 1
################################################################################