From 526f90626652ef12587d94cc1a4b6dcfc04601ee Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Wed, 23 Apr 2025 18:43:39 -0600 Subject: [PATCH] comment out variable to fix warning --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 4b9f9e9..7638f49 100644 --- a/src/main.rs +++ b/src/main.rs @@ -88,8 +88,8 @@ fn mount_partitions(drive_name: &str) { .output() .expect("Failed to create boot directory"); - let boot_source = Some(Path::new(&efi_path)); - let boot_target = Path::new("/mnt/boot"); + //let boot_source = Some(Path::new(&efi_path)); + //let boot_target = Path::new("/mnt/boot"); let _mount_boot = Command::new("mount") .args(["-t", "vfat"])