You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Download location for stage3 and Portage files, use whitespace to set multiple servers
# You may visit https://www.gentoo.org/downloads/mirrors/ and pick a http or ftp url near your physical location
MIRROR='http://distfiles.gentoo.org/'
I think the solution is to treat MIRROR as a set and cast it into an array, using one (the first?) of the MIRROR elements for ARCH_URL (and any future usages of MIRROR).
Doing this, it would also be useful to force or strip a trailing slash in the mirror URL and build ARCH_URL accordingly (it currently breaks when there is no trailing slash).
The text was updated successfully, but these errors were encountered:
kubler.conf describes
MIRROR
withSo multiple mirrors should be allowed.
However, the ARCH_URL construction in core.sh uses the entire string, failing if it contains multiple mirrors.
I think the solution is to treat
MIRROR
as a set and cast it into an array, using one (the first?) of theMIRROR
elements for ARCH_URL (and any future usages of MIRROR).Doing this, it would also be useful to force or strip a trailing slash in the mirror URL and build
ARCH_URL
accordingly (it currently breaks when there is no trailing slash).The text was updated successfully, but these errors were encountered: