Merge "Fix boolean conditionals for Ansible 2.0 with git repo copies"

This commit is contained in:
Jenkins 2015-12-21 20:38:18 +00:00 committed by Gerrit Code Review
commit 288b06c441

View File

@ -18,4 +18,4 @@
when: ci_testing_zuul | bool == false and copy_from_local_path | bool == false
- name: "Copy from local path"
include: local_path.yaml
when: ci_testing_zuul | bool or copy_from_local_path | bool
when: ci_testing_zuul | bool == true or copy_from_local_path | bool == true