Commit f71dbc94 by Mislav Marohnić

Merge pull request #820 from silenius/master

A lightweight version of Subversion is already installed on FreeBSD a…
parents 6775490e 765d62c5
......@@ -444,6 +444,8 @@ fetch_svn() {
if type svn &>/dev/null; then
svn co -r "$svn_rev" "$svn_url" "${package_name}" >&4 2>&1
elif type svnlite &>/dev/null; then
svnlite co -r "$svn_rev" "$svn_url" "${package_name}" >&4 2>&1
else
echo "error: please install Subversion and try again" >&2
exit 1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment