The branch main has been updated by gjb: URL: https://cgit.FreeBSD.org/src/commit/?id=69b6abb7b2bb2b07600b27660d864ddcd0b28cec
commit 69b6abb7b2bb2b07600b27660d864ddcd0b28cec Author: Glen Barber <[email protected]> AuthorDate: 2021-05-12 14:32:03 +0000 Commit: Glen Barber <[email protected]> CommitDate: 2021-05-12 14:32:03 +0000 release: remove logic to locate the svn{,lite} binary Sponsored by: Rubicon Communications, LLC ("Netgate") --- release/release.sh | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/release/release.sh b/release/release.sh index 87e22e669fd1..a448361b86a6 100755 --- a/release/release.sh +++ b/release/release.sh @@ -65,17 +65,6 @@ env_setup() { [ ! -z "${VCSCMD}" ] && break 2 done - # Find the Subversion binary to use. This is a workaround to use - # the source of truth for the ports tree, as the conversion to Git - # is targeted to occur slightly after the currently-scheduled 13.0 - # release. - for _dir in /usr/bin /usr/local/bin; do - for _svn in svn svnlite; do - [ -x "${_dir}/${_svn}" ] && SVNCMD="${_dir}/${_svn}" - [ ! -z "${SVNCMD}" ] && break 2 - done - done - if [ -z "${VCSCMD}" -a -z "${NOGIT}" ]; then echo "*** The devel/git port/package is required." exit 1 _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/dev-commits-src-all To unsubscribe, send any mail to "[email protected]"
