mirror of
https://github.com/ansible/awx.git
synced 2026-02-20 12:40:06 -03:30
Fix error in image_build role
I think I derped up and commited something in an old stash.
This commit is contained in:
@@ -1,13 +1,7 @@
|
||||
---
|
||||
- name: Get Version from checkout if not provided
|
||||
shell: "{{ lookup('file', playbook_dir + '/../VERSION') }}"
|
||||
delegate_to: localhost
|
||||
register: awx_version_command
|
||||
when: awx_version is not defined
|
||||
|
||||
- name: Set global version if not provided
|
||||
set_fact:
|
||||
awx_version: "{{ awx_version_command.stdout }}"
|
||||
awx_version: "{{ lookup('file', playbook_dir + '/../VERSION') }}"
|
||||
when: awx_version is not defined
|
||||
|
||||
- name: Verify awx-logos directory exists for official install
|
||||
|
||||
Reference in New Issue
Block a user