svn commit: r339244 - head/usr.sbin/bsdinstall/scripts
Glen Barber
gjb at FreeBSD.org
Mon Oct 8 19:48:59 UTC 2018
Author: gjb
Date: Mon Oct 8 19:48:58 2018
New Revision: 339244
URL: https://svnweb.freebsd.org/changeset/base/339244
Log:
Fix the distribution path for -ALPHA builds, which are under
the snapshots directory, not releases.
Reported by: David Marec david.marec _at_ davenulle _dot_ org
Approved by: re (rgrimes)
Sponsored by: The FreeBSD Foundation
Modified:
head/usr.sbin/bsdinstall/scripts/mirrorselect
Modified: head/usr.sbin/bsdinstall/scripts/mirrorselect
==============================================================================
--- head/usr.sbin/bsdinstall/scripts/mirrorselect Mon Oct 8 19:39:05 2018 (r339243)
+++ head/usr.sbin/bsdinstall/scripts/mirrorselect Mon Oct 8 19:48:58 2018 (r339244)
@@ -161,7 +161,7 @@ _UNAME_R=`uname -r`
_UNAME_R=${_UNAME_R%-p*}
case ${_UNAME_R} in
- *-CURRENT|*-STABLE|*-PRERELEASE)
+ *-ALPHA*|*-CURRENT|*-STABLE|*-PRERELEASE)
RELDIR="snapshots"
;;
*)
More information about the svn-src-all
mailing list