Skip to content

Commit 485ef1b

Browse files
committed
Fix warning
[WARNING]: conditional statements should not include jinja2 templating delimiters such as {{ }} or {% %}. Found: {{ docker_deploy_s3_files | length > 0 }}
1 parent a6ae2d5 commit 485ef1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757

5858
- name: Copy files from S3
5959
include_tasks: s3.yml
60-
when: "{{ docker_deploy_s3_files | length > 0 }}"
60+
when: docker_deploy_s3_files | length > 0
6161
tags: docker_deploy
6262

6363
- name: Template files with src

0 commit comments

Comments
 (0)