From 47df4e3ea2dd9a351a1be8decbfcd3f6e9a62c9d Mon Sep 17 00:00:00 2001 From: Michael Aldridge Date: Sun, 2 Sep 2018 11:53:41 -0700 Subject: [PATCH] common/travis: Update mirror --- common/travis/set_mirror.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/travis/set_mirror.sh b/common/travis/set_mirror.sh index 042d7fe0da8..74627f4da2e 100755 --- a/common/travis/set_mirror.sh +++ b/common/travis/set_mirror.sh @@ -1,7 +1,7 @@ #!/bin/sh -TRAVIS_PROTO=https -TRAVIS_MIRROR=beta.de.repo.voidlinux.org +TRAVIS_PROTO=http +TRAVIS_MIRROR=alpha.us.repo.voidlinux.org for _i in etc/repos-remote.conf etc/defaults.conf etc/repos-remote-x86_64.conf ; do printf '\x1b[32mUpdating %s...\x1b[0m\n' $_i @@ -11,5 +11,5 @@ for _i in etc/repos-remote.conf etc/defaults.conf etc/repos-remote-x86_64.conf ; sed -i "s:https:$TRAVIS_PROTO:g" $_i # Now set the mirror - sed -i "s:repo\.voidlinux\.eu:$TRAVIS_MIRROR:g" $_i + sed -i "s:alpha\.de\.repo\.voidlinux\.org:$TRAVIS_MIRROR:g" $_i done