pacstrap use host cache

This commit is contained in:
Dennis ten Hoove 2024-02-24 06:08:04 +01:00
parent c57eeb4da7
commit 313e1a34f2

View file

@ -143,7 +143,7 @@ if [[ $type == 'archlinux' ]]; then
# Read base package list and install base system
readarray bootstrap_packages < $variantdir/bootstrap.list
printf '\e[1;34m-->\e[0m\e[1m Installing base packages\e[0m\n'
pacstrap $workdir ${bootstrap_packages[*]} || cleanup_and_quit 'Failed to install secondary package list'
pacstrap -c $workdir ${bootstrap_packages[*]} || cleanup_and_quit 'Failed to install secondary package list'
# If overlay directory exists in variant copy it's contents to the temporary subvolume
if [[ -d $variantdir/overlay ]]; then