Skip to content

Commit d175c63

Browse files
committed
fix: CI/CD - brain err - not defined to is undefined
1 parent c8d9826 commit d175c63

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tasks/check-vars.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
- name: Check core variables
1111
when:
12-
- bbb_github_ci not defined
12+
- bbb_github_ci is undefined
1313
ansible.builtin.assert:
1414
quiet: true
1515
that: "{{ item }}"
@@ -25,7 +25,7 @@
2525
- name: Check IPv4 variables
2626
when:
2727
- bbb_bind_ip4 or bbb_public_ip4
28-
- bbb_github_ci not defined
28+
- bbb_github_ci is undefined
2929
ansible.builtin.assert:
3030
quiet: true
3131
that: "{{ item }}"
@@ -37,7 +37,7 @@
3737
- name: Check IPv6 variables
3838
when:
3939
- bbb_bind_ip6 or bbb_public_ip6
40-
- bbb_github_ci not defined
40+
- bbb_github_ci is undefined
4141
ansible.builtin.assert:
4242
quiet: true
4343
that: "{{ item }}"

0 commit comments

Comments
 (0)