Skip to content

Commit

Permalink
Fix failing build
Browse files Browse the repository at this point in the history
  • Loading branch information
tersmitten committed Nov 5, 2024
1 parent 45e8e7d commit 552ff73
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tasks/main.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# tasks file
---
# See: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=863199
- name: ensure man directory

Check warning on line 4 in tasks/main.yml

View workflow job for this annotation

GitHub Actions / Lint

name[casing]

All names should start with an uppercase letter.
ansible.builtin.file:
path: /usr/share/man/man1
state: directory
recurse: true
when:
- not netbeans_ide_assume_java_provided
- ansible_distribution == 'Ubuntu'
- ansible_distribution_major_version is version('18', '>=')

- name: install dependencies (java)

Check warning on line 14 in tasks/main.yml

View workflow job for this annotation

GitHub Actions / Lint

name[casing]

All names should start with an uppercase letter.
ansible.builtin.apt:
name: "{{ netbeans_ide_java_dependencies }}"
Expand Down

0 comments on commit 552ff73

Please sign in to comment.