[host][linux] Properly handle double quotes in /etc/os-release in PlatformInformation
diff --git a/host/host_linux.go b/host/host_linux.go
index 8eab651..89af40d 100644
--- a/host/host_linux.go
+++ b/host/host_linux.go
@@ -247,9 +247,9 @@
 		}
 		switch field[0] {
 		case "ID": // use ID for lowercase
-			platform = field[1]
+			platform = strings.Trim(field[1], `"`)
 		case "VERSION":
-			version = field[1]
+			version = strings.Trim(field[1], `"`)
 		}
 	}
 	return platform, version, nil