Use double quotes
Signed-off-by: Pierre-Yves Chibon <pingou@pingoured.fr>
This commit is contained in:
parent
608a871e96
commit
c20b91e30d
3 changed files with 6 additions and 6 deletions
|
@ -2,14 +2,14 @@
|
||||||
copy:
|
copy:
|
||||||
src: files/debug.py
|
src: files/debug.py
|
||||||
dest: /usr/local/bin/debug.py
|
dest: /usr/local/bin/debug.py
|
||||||
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 }}"
|
||||||
|
|
||||||
- name: Show the output of the script
|
- name: Show the output of the script
|
||||||
debug:
|
debug:
|
||||||
msg: "Output of the script: {{ output }}"
|
msg: "Output of the script: {{ output }}"
|
||||||
|
|
|
@ -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 }}"
|
||||||
|
|
|
@ -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 }}"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue