From 0bf2acb0432b4be52f1210380d8c9f4aa967e7fe Mon Sep 17 00:00:00 2001 From: Mikhail Klementev Date: Sat, 13 May 2023 19:08:46 +0000 Subject: [PATCH] feat: lowercase release strings --- distro/debian/debian.go | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/distro/debian/debian.go b/distro/debian/debian.go index c7ec08b..138fee1 100644 --- a/distro/debian/debian.go +++ b/distro/debian/debian.go @@ -33,18 +33,18 @@ const ( var ReleaseStrings = [...]string{ "", - "Buzz", - "Hamm", - "Woody", - "Etch", - "Lenny", - "Squeeze", - "Wheezy", - "Jessie", - "Stretch", - "Buster", - "Bullseye", - "Bookworm", + "buzz", + "hamm", + "woody", + "etch", + "lenny", + "squeeze", + "wheezy", + "jessie", + "stretch", + "buster", + "bullseye", + "bookworm", } func (cn Release) String() string {