Skip to content

Commit

Permalink
Add support for Oracle Linux 8x
Browse files Browse the repository at this point in the history
  • Loading branch information
crowesn committed Feb 7, 2023
1 parent f7928e1 commit 68b6f53
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bin/wkhtmltopdf
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ suffix = case RbConfig::CONFIG['host_os']
os = 'centos_7' if (os.start_with?('amzn_2') && !os.start_with?('amzn_20')) ||
os.start_with?('rhel_7.')

os = 'centos_8' if os.start_with?('rocky_8') || os.start_with?('rhel_8.')
os = 'centos_8' if os.start_with?('rocky_8') ||
os.start_with?('rhel_8.') ||
os.start_with?('ol_8.')

os_based_on_debian_9 = os.start_with?('debian_9') ||
os.start_with?('deepin')
Expand Down

0 comments on commit 68b6f53

Please sign in to comment.