mirror of
https://github.com/rbenv/ruby-build.git
synced 2025-11-27 14:20:56 +01:00
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:
parent
ae0f2b9f22
commit
e32e087d3b
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue