Use double quotes

Signed-off-by: Pierre-Yves Chibon <pingou@pingoured.fr>
This commit is contained in:
Pierre-Yves Chibon 2018-08-17 09:39:02 +02:00
parent 608a871e96
commit c20b91e30d
3 changed files with 6 additions and 6 deletions

View file

@ -5,7 +5,7 @@
mode: 0755 mode: 0755
- name: Run the script - name: Run the script
command: /usr/local/bin/debug.py '{{ msg | to_json }}' command: /usr/local/bin/debug.py "{{ msg | to_json }}"
register: output register: output
environment: environment:
TEST_VARIABLE: "{{ debug_token }}" TEST_VARIABLE: "{{ debug_token }}"

View file

@ -5,7 +5,7 @@
mode: 0755 mode: 0755
- name: Run the script - name: Run the script
command: /usr/local/bin/flag_commit_build.py '{{ msg | to_json }}' command: /usr/local/bin/flag_commit_build.py "{{ msg | to_json }}"
register: output register: output
environment: environment:
API_TOKEN: "{{ api_token_flag_commit_build }}" API_TOKEN: "{{ api_token_flag_commit_build }}"

View file

@ -5,7 +5,7 @@
mode: 0755 mode: 0755
- name: Run the script - name: Run the script
command: /usr/local/bin/flag_ci_pr.py '{{ msg | to_json }}' command: /usr/local/bin/flag_ci_pr.py "{{ msg | to_json }}"
register: output register: output
environment: environment:
API_TOKEN: "{{ api_token_flag_pr_ci }}" API_TOKEN: "{{ api_token_flag_pr_ci }}"