ansible-desktop/roles/intellij/tasks/arch.yml
Przemysław Grondek 200645e7b6 Fix intellij ultimate
Install java before intellij
Create symbolic link to idea
2023-10-24 18:19:20 +02:00

18 lines
355 B
YAML

- name: install java
become: yes
community.general.pacman:
name:
- jdk17-openjdk
- name: install IntelliJ [AUR]
shell:
cmd:
yay -S --needed --noconfirm intellij-idea-ultimate-edition
- name: Create symbolic link
become: yes
file:
src: "/usr/bin/intellij-idea-ultimate-edition"
dest: "/usr/bin/idea"
state: link