Skip to content
Snippets Groups Projects
Commit d55903fb authored by Felix Schäfer's avatar Felix Schäfer :construction_worker:
Browse files

Fix ansible-lint empty-string-compare violations

parent 45bdd755
Branches
Tags v2.0.4
No related merge requests found
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
- name: Define the Gitlab package name. - name: Define the Gitlab package name.
set_fact: set_fact:
gitlab_package_name: "{{ gitlab_edition }}{{ gitlab_package_version_separator }}{{ gitlab_version }}" gitlab_package_name: "{{ gitlab_edition }}{{ gitlab_package_version_separator }}{{ gitlab_version }}"
when: gitlab_version != '' when: gitlab_version|length > 0
- name: Install GitLab - name: Install GitLab
package: package:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment