From 04490103d4bdff31d1490b7e61eb3fc30fe87d1b Mon Sep 17 00:00:00 2001 From: Bob van Oorschot <10108934+bobvanoorschot@users.noreply.github.com> Date: Mon, 4 Sep 2023 16:15:26 +0200 Subject: [PATCH] Add support for tuxedo os --- bin/wkhtmltopdf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/wkhtmltopdf b/bin/wkhtmltopdf index 52cda529..a65f462b 100755 --- a/bin/wkhtmltopdf +++ b/bin/wkhtmltopdf @@ -30,7 +30,8 @@ suffix = case RbConfig::CONFIG['host_os'] os.start_with?('linuxmint_20.') os = 'ubuntu_22.04' if os.start_with?('ubuntu_22.') || - os.start_with?('linuxmint_21.') + os.start_with?('linuxmint_21.') || + os.start_with?('tuxedo_22.') os = 'centos_6' if (os.start_with?('amzn_') && os != 'amzn_2') || (os.empty? && File.read('/etc/centos-release').start_with?('CentOS release 6'))