Skip to content

Commit 0b44242

Browse files
committed
include to include_tasks
1 parent 7545a99 commit 0b44242

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tasks/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22

33
# Install package
4-
- include: install_package.yml
4+
- include_tasks: install_package.yml
55
when: not python_build_from_source
66

77
# Build from source
@@ -10,7 +10,7 @@
1010
when: python_build_from_source
1111
register: python_installed
1212

13-
- include: build_source.yml
13+
- include_tasks: build_source.yml
1414
when: python_build_from_source and python_installed.stat.exists == false
1515

1616
# Install/upgrade pip
@@ -19,7 +19,7 @@
1919
register: pip_installed
2020

2121
- name: Install pip
22-
include: install_pip.yml
22+
include_tasks: install_pip.yml
2323
when: pip_installed.stat.exists == false
2424

2525
- name: Add system pip.conf

0 commit comments

Comments
 (0)