version update

This commit is contained in:
2023-05-24 14:30:11 +02:00
parent de0440270b
commit 8af379cd72
4 changed files with 5 additions and 5 deletions

View File

@@ -162,7 +162,7 @@ fn create(command: args::CreateCommand) -> anyhow::Result<()> {
info!("Partitioning the block device");
debug!("{:?}", disk_path);
let boot_size = command.boot_size.unwrap_or(600);
let boot_size = command.boot_size.unwrap_or(300);
sgdisk
.execute()
@@ -433,7 +433,7 @@ fn create(command: args::CreateCommand) -> anyhow::Result<()> {
arch_chroot
.execute()
.arg(mount_point.path())
.args(&["mkinitcpio", "-p linux61 linux515"])
.args(&["mkinitcpio", "-p", "linux61", "linux515"])
.run()
.context("Failed to run mkinitcpio - do you have the base and linux packages installed?")?;