diff options
author | Simon McVittie <smcv@collabora.com> | 2023-02-14 10:48:43 +0000 |
---|---|---|
committer | Simon McVittie <smcv@collabora.com> | 2023-02-14 10:48:43 +0000 |
commit | 2ff4fa5c641b49eb9db3a875e57f877f5a890d38 (patch) | |
tree | 268592170813a75ebcf4850ac94493d089ca560e /tools | |
parent | 5a6edc5595b15a94ff40e188ac0b5723859476e3 (diff) | |
download | dbus-python-master.tar.gz |
Current Debian Docker images use a reliable CDN, and images for newer
suites like bookworm have started using /etc/apt/sources.list.d/ instead
of the old-style /etc/apt/sources.list, making this step fail.
Signed-off-by: Simon McVittie <smcv@collabora.com>
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/ci-install.sh | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tools/ci-install.sh b/tools/ci-install.sh index ca678ed..1b2fe7b 100755 --- a/tools/ci-install.sh +++ b/tools/ci-install.sh @@ -71,11 +71,6 @@ case "$ci_distro" in # Don't ask questions, just do it sudo="$sudo env DEBIAN_FRONTEND=noninteractive" - # Debian Docker images use httpredir.debian.org but it seems to be - # unreliable; use a CDN instead - $sudo sed -i -e 's/httpredir\.debian\.org/deb.debian.org/g' \ - /etc/apt/sources.list - $sudo apt-get -qq -y update $sudo apt-get -qq -y install --no-install-recommends \ |