Fix build GUI and add CI check

This commit is contained in:
Wildan M
2026-07-03 14:59:57 +07:00
parent e249630e51
commit 5b2f2ecd53
2 changed files with 12 additions and 2 deletions
+1 -1
View File
@@ -75,7 +75,7 @@ pub fn disk_paths() -> Result<Vec<(String, bool, u64)>, String> {
let Ok(metadata) = entry.metadata() else {
continue;
};
let is_partition = file_name.contains(p);
let is_partition = file_name.contains('p');
let size = metadata.len();
if size == 0 {
continue;