From 02660eaf7c8c7ed1a369a9a3b32c71ea99029bd6 Mon Sep 17 00:00:00 2001 From: Jacob Young Date: Fri, 10 Mar 2023 09:41:18 -0500 Subject: [PATCH] Update host/host_linux.go Use a raw string instead of escaped quotes. Co-authored-by: shirou --- host/host_linux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host/host_linux.go b/host/host_linux.go index 7167e331a..7f96bfaef 100644 --- a/host/host_linux.go +++ b/host/host_linux.go @@ -210,7 +210,7 @@ func PlatformInformationWithContext(ctx context.Context) (platform string, famil } else if lsb.ID == "Kylin" { platform = "Kylin" version = lsb.Release - } else if lsb.ID == "\"Cumulus Linux\"" { + } else if lsb.ID == `"Cumulus Linux"` { platform = "cumuluslinux" version = lsb.Release } else {