Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 8 Oct 2018 19:48:58 +0000 (UTC)
From:      Glen Barber <gjb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r339244 - head/usr.sbin/bsdinstall/scripts
Message-ID:  <201810081948.w98JmwY7036686@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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"
 		;;
 	*)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810081948.w98JmwY7036686>