mirror of
https://github.com/void-linux/void-packages.git
synced 2025-04-14 21:27:01 +02:00
this should allow package tests that check things like writability to succeed and have fewer skipped tests in CI. - switch to using the `void-LIBC-full` container - use `uchroot` instead of `ethereal` - simplify some scripts for this change
10 lines
223 B
Bash
Executable file
10 lines
223 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
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
|