add note about full path for drive

This commit is contained in:
Aaron Honeycutt 2025-03-23 19:54:51 -06:00
parent db898d510d
commit 2281629835
2 changed files with 1 additions and 19 deletions

19
Cargo.lock generated
View file

@ -70,12 +70,6 @@ version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "cfg_aliases"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
[[package]]
name = "clang-sys"
version = "1.8.1"
@ -258,18 +252,6 @@ version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
[[package]]
name = "nix"
version = "0.29.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
dependencies = [
"bitflags",
"cfg-if",
"cfg_aliases",
"libc",
]
[[package]]
name = "nom"
version = "7.1.3"
@ -305,7 +287,6 @@ dependencies = [
name = "nyxi-installer"
version = "2.0.0"
dependencies = [
"nix",
"rsfdisk",
"sys_metrics",
]

View file

@ -59,6 +59,7 @@ fn main() {
let mut drive_name = String::new();
println!("");
println!("Use the full drive path such as /dev/nvme0n1 or /dev/sda");
println!("Which drive do we want to use for this installation?: {}", drive_name);
io::stdin()