Skip to content

Commit b8e4777

Browse files
committed
try with debian 11 enabled
1 parent f8f8b72 commit b8e4777

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

spec/acceptance/default_parameters_jira_10_spec.rb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@
33
require 'spec_helper_acceptance'
44

55
def on_supported_os
6-
(fact('os.family') == 'Debian' and fact('os.release.major') >= '22.04') or
7-
(fact('os.family') == 'RedHat' and fact('os.release.major') >= '8')
6+
family = fact('os.family')
7+
major = fact('os.release.major')
8+
(family == 'Debian' and (major >= '22.04' or major >= '11')) or (family == 'RedHat' and major >= '8')
89
end
910

1011
prepare = <<-EOS

0 commit comments

Comments
 (0)