diff options
author | Erich Eckner <git@eckner.net> | 2019-04-01 10:54:20 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2019-06-16 14:29:10 +0200 |
commit | 002128842304f7cbf27ccbe7f8a9f6f1515f860c (patch) | |
tree | b9fcb1591d47880bf2bb6eee71302b6ffc23d078 /arch-nspawn.in | |
parent | b2303fbececd4aa117f385dca376934364117b16 (diff) | |
download | devtools32-002128842304f7cbf27ccbe7f8a9f6f1515f860c.tar.xz |
generate separate config file for i686 and x86_64
Diffstat (limited to 'arch-nspawn.in')
-rw-r--r-- | arch-nspawn.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch-nspawn.in b/arch-nspawn.in index cebeb2e..bc2215a 100644 --- a/arch-nspawn.in +++ b/arch-nspawn.in @@ -84,7 +84,9 @@ build_mount_args() { copy_hostconf () { cp -a /etc/pacman.d/gnupg "$working_dir/etc/pacman.d" - printf 'Server = %s\n' "${host_mirrors[@]}" >"$working_dir/etc/pacman.d/mirrorlist" + printf 'Server = %s\n' "${host_mirrors[@]}" | \ + tee "$working_dir/etc/pacman.d/mirrorlist" > \ + "$working_dir/etc/pacman.d/mirrorlist32" [[ -n $pac_conf ]] && cp "$pac_conf" "$working_dir/etc/pacman.conf" [[ -n $makepkg_conf ]] && cp "$makepkg_conf" "$working_dir/etc/makepkg.conf" |