Skip to content

Commit

Permalink
Fix quotes around command
Browse files Browse the repository at this point in the history
  • Loading branch information
Thulium-Drake committed Jan 23, 2024
1 parent 036d528 commit 247ca52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roles/ara_api/tasks/pre-requirements.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
# The ansible_python_version fact might end up retrieving the version of
# python2 so we need to explicitely get the version of python 3 available.
- name: Validate availability of Python 3.5
command: "{{ ara_api_python_command }} -c 'import sys; print(".".join(map(str, sys.version_info[:2])))'"
command: "{{ ara_api_python_command }} -c 'import sys; print(\".\".join(map(str, sys.version_info[:2])))'
changed_when: false
failed_when: false
register: python_version
Expand Down

0 comments on commit 247ca52

Please sign in to comment.