From 86492306de908f13d5e43921fec1406ae53f7e37 Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Thu, 8 Jun 2023 12:30:17 +0200 Subject: fixed wrongly-merged host_mirrors computation in arch-nspawn.in --- src/arch-nspawn.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arch-nspawn.in b/src/arch-nspawn.in index 11af616..6fbed18 100644 --- a/src/arch-nspawn.in +++ b/src/arch-nspawn.in @@ -61,7 +61,7 @@ if (( ${#cache_dirs[@]} == 0 )); then fi # shellcheck disable=2016 -host_mirrors=($(pacman-conf --repo extra Server 2> /dev/null | sed -r 's#(.*/)extra/os/.*#\1$repo/os/$arch#')) +host_mirrors=($(pacman-conf --config "${pac_conf:-$working_dir/etc/pacman.conf}" --repo extra Server 2> /dev/null | sed -r 's#(.*/)extra/os/.*#\1$repo/os/$arch#;t;s#(.*/)[^/]+/extra(/?)$#\1$arch/$repo\2#')) for host_mirror in "${host_mirrors[@]}"; do if [[ $host_mirror == *file://* ]]; then -- cgit v1.2.3-54-g00ecf