From 16a2f6571a44e1caf8596f5e3f31134c7a547717 Mon Sep 17 00:00:00 2001 From: ofluffydev Date: Tue, 15 Oct 2024 15:48:11 -0500 Subject: [PATCH] Changed sync message for clarity --- src/flasher.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/flasher.rs b/src/flasher.rs index cbf8118..9055962 100644 --- a/src/flasher.rs +++ b/src/flasher.rs @@ -148,7 +148,7 @@ pub fn flash_iso(iso_path: &str, destination: &str) -> Result<(), io::Error> { // std::process::exit(0); // Log that it's going to sync data to disk - println!("Syncing data to disk..."); + println!("Syncing data to disk, process will not close until this is complete."); Command::new("sync") .status() .expect("Failed to flush data to disk");