mirror of
https://github.com/ansible/awx.git
synced 2026-01-11 10:00:01 -03:30
Merge pull request #9616 from shanemcd/awx-logos
Fix paths used for detecting and copying awx-logos Reviewed-by: Elijah DeLee <kdelee@redhat.com> Reviewed-by: Ryan Petrello <None>
This commit is contained in:
commit
f06141eb00
@ -6,15 +6,15 @@
|
||||
|
||||
- name: Verify awx-logos directory exists for official install
|
||||
stat:
|
||||
path: "../../awx-logos"
|
||||
path: "../../../awx-logos"
|
||||
register: logosdir
|
||||
failed_when: logosdir.stat.isdir is not defined or not logosdir.stat.isdir
|
||||
when: awx_official|default(false)|bool
|
||||
|
||||
- name: Copy logos for inclusion in sdist
|
||||
copy:
|
||||
src: "../../awx-logos/awx/ui/client/assets/"
|
||||
dest: "../awx/ui_next/public/static/media/"
|
||||
src: "../../../awx-logos/awx/ui/client/assets/"
|
||||
dest: "../../awx/ui_next/public/static/media/"
|
||||
when: awx_official|default(false)|bool
|
||||
|
||||
# Calling Docker directly because docker-py doesnt support BuildKit
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user