forked from brl/citadel-tools
name nvme partitions correctly
This commit is contained in:
parent
8d8f9b69ee
commit
e07d35944a
@ -534,8 +534,12 @@ impl Installer {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn target_partition(&self, num: usize) -> String {
|
fn target_partition(&self, num: usize) -> String {
|
||||||
|
if self.target_str().starts_with("/dev/nvme") {
|
||||||
|
format!("{}p{}", self.target().display(), num)
|
||||||
|
} else {
|
||||||
format!("{}{}", self.target().display(), num)
|
format!("{}{}", self.target().display(), num)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fn artifact_path(&self, filename: &str) -> PathBuf {
|
fn artifact_path(&self, filename: &str) -> PathBuf {
|
||||||
Path::new(&self.artifact_directory).join(filename)
|
Path::new(&self.artifact_directory).join(filename)
|
||||||
|
Loading…
Reference in New Issue
Block a user