Skip to content
This repository was archived by the owner on Mar 30, 2025. It is now read-only.

Commit 9057080

Browse files
author
staticdev
committed
Fix variable checks
1 parent 60b3a2e commit 9057080

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

requirements.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ roles:
44
version: 1.1.0
55
- name: oefenweb.pycharm
66
version: v5.0.7
7-
when: install_pycharm
7+
when: "{{ install_pycharm }}"
88
- name: ngetchell.vscode
99
version: v1.0.3
10-
when: install_vscode
10+
when: "{{ install_vscode }}"

tasks/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@
6262

6363
- name: Install pycharm
6464
include_tasks: pycharm.yml
65-
when: install_pycharm
65+
when: "{{ install_pycharm }}"
6666

6767
- name: Install vscode
6868
include_tasks: vscode.yml
69-
when: install_vscode
69+
when: "{{ install_vscode }}"

0 commit comments

Comments
 (0)