File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -440,9 +440,11 @@ module OV = Ocaml_version
440440let distro_arches ov (d : t ) =
441441 match (resolve_alias d, ov) with
442442 | (`CentOS (`V6 | `V7 ) | `OracleLinux `V7 ), ov when OV. major ov > = 5 -> []
443- | `Debian ( `V11 | ` V12) , ov when OV. (compare Releases. v4_03_0 ov) = - 1 ->
443+ | `Debian ` V12 , ov when OV. (compare Releases. v4_03_0 ov) = - 1 ->
444444 [ `I386 ; `X86_64 ; `Aarch64 ; `Aarch32 ; `Ppc64le ; `S390x ]
445- | `Debian (`V11 | `V12 ), ov when OV. (compare Releases. v4_02_0 ov) = - 1 ->
445+ | `Debian `V12 , ov when OV. (compare Releases. v4_02_0 ov) = - 1 ->
446+ [ `I386 ; `X86_64 ; `Aarch64 ; `Aarch32 ]
447+ | `Debian `V11 , ov when OV. (compare Releases. v4_02_0 ov) = - 1 ->
446448 [ `I386 ; `X86_64 ; `Aarch64 ; `Aarch32 ]
447449 | `Debian `V10 , ov when OV. (compare Releases. v4_03_0 ov) = - 1 ->
448450 [ `I386 ; `X86_64 ; `Aarch64 ; `Aarch32 ]
You can’t perform that action at this time.
0 commit comments