Skip to content

Commit

Permalink
unixPb: Correct the condition on JDK17 alpine aarch64 install (#3807)
Browse files Browse the repository at this point in the history
  • Loading branch information
Haroon-Khel authored Nov 10, 2024
1 parent c195e3c commit afb0e11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ansible/playbooks/AdoptOpenJDK_Unix_Playbook/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
jdk_version: 17
when:
- ansible_distribution != "Solaris"
- (ansible_distribution != "Alpine" and ansible_architecture != "aarch64")
- not (ansible_distribution == "Alpine" and ansible_architecture == "aarch64")
tags: build_tools
- role: adoptopenjdk_install # JDK21 Build Bootstrap
jdk_version: 20
Expand Down

0 comments on commit afb0e11

Please sign in to comment.