Browse Source

Fixed filtering logic for nvme

Toby Chui 1 tháng trước cách đây
mục cha
commit
bfa02bc7a8
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 2 1
      main.go

+ 2 - 1
main.go

@@ -27,9 +27,10 @@ func main() {
 			if strings.HasPrefix(deviceFile.Name(), "sd") && len(deviceFile.Name()) > 3 {
 				continue
 			}
-			if strings.HasPrefix(deviceFile.Name(), "nvme") && strings.Contains(deviceFile.Name()[4:], "p") {
+			if strings.HasPrefix(deviceFile.Name(), "nvme") && len(deviceFile.Name()) > 5 {
 				continue
 			}
+
 			fullPath := "/dev/" + deviceFile.Name()
 			fmt.Println(fullPath)