From ea932dd641798c5408b29e4ceef84cd940666f07 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Fri, 17 Apr 2026 22:30:10 -0400 Subject: [PATCH] Do not downcase OS name --- bin/vm-info | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/vm-info b/bin/vm-info index 309624b..5657335 100755 --- a/bin/vm-info +++ b/bin/vm-info @@ -16,7 +16,7 @@ def read_os_name return nil unless File.exist?("/etc/os-release") File.readlines("/etc/os-release").each do |line| if line =~ /^PRETTY_NAME="(.+)"$/ - return $1.strip.delete('"').downcase + return $1.strip.delete('"') end end nil