Removing modprobe bcachefs (as we have it build in into kernel) and bumping app version.

This commit is contained in:
2026-07-13 01:39:42 +02:00
parent 56d181864a
commit 32a1491537
3 changed files with 4 additions and 4 deletions
Generated
+1 -1
View File
@@ -287,7 +287,7 @@ checksum = "6aa2c4e539b869820a2b82e1aef6ff40aa85e65decdd5185e83fb4b1249cd00f"
[[package]] [[package]]
name = "nyanit" name = "nyanit"
version = "0.1.1" version = "0.1.2"
dependencies = [ dependencies = [
"ratatui", "ratatui",
"ratatui-textarea", "ratatui-textarea",
+2 -2
View File
@@ -1,12 +1,12 @@
[package] [package]
name = "nyanit" name = "nyanit"
version = "0.1.1" version = "0.1.2"
edition = "2024" edition = "2024"
[dependencies] [dependencies]
ratatui = { version = "0.30", default-features = false, features = ["termion"] } ratatui = { version = "0.30", default-features = false, features = ["termion"] }
ratatui-textarea = { version = "0.9", default-features = false, features = ["termion"] } ratatui-textarea = { version = "0.9", default-features = false, features = ["termion"] }
regex = "1.12.4" regex = "1.12"
termion = "4" termion = "4"
+1 -1
View File
@@ -223,7 +223,7 @@ pub fn prepare_env() -> Result<(), ExecCommandError> {
exec_command("mount", &vec!["-t", "sysfs", "none", "/sys"])?; exec_command("mount", &vec!["-t", "sysfs", "none", "/sys"])?;
// modprobe bcachefs // modprobe bcachefs
exec_command("modprobe", &vec!["bcachefs"])?; // exec_command("modprobe", &vec!["bcachefs"])?;
Ok(()) Ok(())
} }