From 5ab238569ddfea342cc6e3b5650c52679a9a7f9a Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Wed, 8 Jul 2020 17:45:25 +0000 Subject: mixed up the mount of /boot, now correctly mounts /boot before running pacstrap --- examples/guided.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples') diff --git a/examples/guided.py b/examples/guided.py index c84b5e56..e2e45539 100644 --- a/examples/guided.py +++ b/examples/guided.py @@ -15,9 +15,9 @@ while (disk_password := getpass.getpass(prompt='Enter disk encryption password ( def perform_installation(device, boot_partition): hostname = input('Desired hostname for the installation: ') - with archinstall.Installer(device, hostname=hostname) as installation: + with archinstall.Installer(device, boot_partition=boot_partition, hostname=hostname) as installation: if installation.minimal_installation(): - installation.add_bootloader(boot_partition) + installation.add_bootloader() packages = input('Additional packages aside from base (space separated): ').split(' ') if len(packages) and packages[0] != '': -- cgit v1.2.3-54-g00ecf