From 200645e7b65d112ed44a14cb810f776dc5943512 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Przemys=C5=82aw=20Grondek?= Date: Tue, 24 Oct 2023 11:48:44 +0200 Subject: [PATCH] Fix intellij ultimate Install java before intellij Create symbolic link to idea --- roles/intellij/tasks/arch.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/roles/intellij/tasks/arch.yml b/roles/intellij/tasks/arch.yml index d038a90..efc1103 100644 --- a/roles/intellij/tasks/arch.yml +++ b/roles/intellij/tasks/arch.yml @@ -1,4 +1,17 @@ +- 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