We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93ba285 commit cae81e1Copy full SHA for cae81e1
tasks/install.yml
@@ -25,10 +25,18 @@
25
when:
26
- not onadata_unmanaged_git_key
27
28
+- name: Install docs.pip
29
+ become: true
30
+ become_user: "{{ onadata_system_user }}"
31
+ shell: "source {{ onadata_venv_path }}/bin/activate && python -m pip install --no-cache-dir -r requirements/docs.pip"
32
+ args:
33
+ executable: /bin/bash
34
+ chdir: "{{ onadata_codebase_path }}"
35
+
36
- name: Generate Docs
37
become: true
38
become_user: "{{ onadata_system_user }}"
- shell: "source {{ onadata_venv_path }}/bin/activate && /usr/bin/make html"
39
+ shell: "source {{ onadata_venv_path }}/bin/activate && make html"
40
args:
41
executable: /bin/bash
42
chdir: "{{ onadata_codebase_path }}/docs"
0 commit comments