mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
Refactor: Ansible bug prevents use from using 'chdir' with 'extra_args'
This commit is contained in:
parent
78b0b753d8
commit
7a6a8bf4c2
1 changed files with 3 additions and 2 deletions
|
@ -20,10 +20,11 @@
|
|||
version: master
|
||||
when: internet_available
|
||||
|
||||
# Ansible Bug: Cannot use 'chdir' with 'extra_args' https://github.com/ansible/ansible/issues/37912 (Patch landed)
|
||||
- name: Download calibre-web dependencies into vendor subdirectory.
|
||||
pip:
|
||||
requirements: requirements.txt
|
||||
chdir: "{{ calibreweb_path }}"
|
||||
requirements: "{{ calibreweb_path }}/requirements.txt"
|
||||
#chdir: "{{ calibreweb_path }}"
|
||||
extra_args: '--target vendor'
|
||||
ignore_errors: True
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue