From 1503fda95adbea805074c5ab558e1e5894405ad4 Mon Sep 17 00:00:00 2001 From: Michael Aldridge Date: Sun, 2 Sep 2018 11:36:22 -0700 Subject: [PATCH] common/travis: Use new name for repo2 --- common/travis/set_mirror.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/travis/set_mirror.sh b/common/travis/set_mirror.sh index b7bb52f6f75..042d7fe0da8 100755 --- a/common/travis/set_mirror.sh +++ b/common/travis/set_mirror.sh @@ -1,7 +1,7 @@ #!/bin/sh TRAVIS_PROTO=https -TRAVIS_MIRROR=repo2.voidlinux.eu +TRAVIS_MIRROR=beta.de.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 @@ -10,6 +10,6 @@ for _i in etc/repos-remote.conf etc/defaults.conf etc/repos-remote-x86_64.conf ; # so we can afford to be a little lazy at times. sed -i "s:https:$TRAVIS_PROTO:g" $_i - # Now set the mirro + # Now set the mirror sed -i "s:repo\.voidlinux\.eu:$TRAVIS_MIRROR:g" $_i done