浏览代码

Fixed filtering logic for nvme

Toby Chui 1 月之前
父节点
当前提交
bfa02bc7a8
共有 1 个文件被更改,包括 2 次插入1 次删除
  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)