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 7545a99 commit 0b44242Copy full SHA for 0b44242
tasks/main.yml
@@ -1,7 +1,7 @@
1
---
2
3
# Install package
4
-- include: install_package.yml
+- include_tasks: install_package.yml
5
when: not python_build_from_source
6
7
# Build from source
@@ -10,7 +10,7 @@
10
when: python_build_from_source
11
register: python_installed
12
13
-- include: build_source.yml
+- include_tasks: build_source.yml
14
when: python_build_from_source and python_installed.stat.exists == false
15
16
# Install/upgrade pip
@@ -19,7 +19,7 @@
19
register: pip_installed
20
21
- name: Install pip
22
- include: install_pip.yml
+ include_tasks: install_pip.yml
23
when: pip_installed.stat.exists == false
24
25
- name: Add system pip.conf
0 commit comments