Add a command line flag to specify the boot partition size (fix #79)

This commit is contained in:
Roey Darwish Dror
2021-12-07 21:21:30 +00:00
parent e7a5fe7344
commit f819e9a9c5
2 changed files with 7 additions and 1 deletions

View File

@@ -52,6 +52,10 @@ pub struct CreateCommand {
#[structopt(long = "aur-packages", value_name = "aurpackage")]
pub aur_packages: Vec<String>,
/// Boot partition size in megabytes
#[structopt(long = "boot-size")]
pub boot_size: Option<u32>,
/// Enter interactive chroot before unmounting the drive
#[structopt(short = "i", long = "interactive")]
pub interactive: bool,