mirror of
https://github.com/xHyroM/void-packages.git
synced 2024-11-09 16:48:05 +01:00
9 lines
213 B
Bash
9 lines
213 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
TRAVIS_MIRROR=repo-ci.voidlinux.org
|
||
|
|
||
|
for _i in etc/xbps.d/repos-remote*.conf ; do
|
||
|
/bin/echo -e "\x1b[32mUpdating $_i...\x1b[0m"
|
||
|
sed -i "s:repo-default\.voidlinux\.org:$TRAVIS_MIRROR:g" $_i
|
||
|
done
|