Change Error message for missing subversion

The current error message for missing subversion is "error: please install \`svn\` and try again", leading the user to try to find and install a package named "svn" (eg. `aptitude install svn for # debian / ubuntu). Changing it to "subversion" can help users unaware that svn is a binary installed by the subversion package, get through the error.
This commit is contained in:
Dimitrios Zorbas 2014-11-15 13:28:35 +02:00 committed by Dimitris Zorbas
parent ae0f2b9f22
commit e32e087d3b

View file

@ -419,7 +419,7 @@ fetch_svn() {
if type svn &>/dev/null; then
svn co -r "$svn_rev" "$svn_url" "${package_name}" >&4 2>&1
else
echo "error: please install \`svn\` and try again" >&2
echo "error: please install Subversion and try again" >&2
exit 1
fi
}