This repository was archived by the owner on Mar 30, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
- name : delete poetry installer
3
3
file :
4
- path : " /home/{{ lookup('env', 'USER') }}/get -poetry.py"
4
+ path : " /home/{{ lookup('env', 'USER') }}/install -poetry.py"
5
5
state : absent
Original file line number Diff line number Diff line change 49
49
when : cookiecutter_folder_check is failed
50
50
51
51
- name : Check if poetry is installed
52
- command : " {{ ansible_env.HOME }}/.poetry /bin/poetry"
52
+ command : " {{ ansible_env.HOME }}/.local /bin/poetry"
53
53
register : poetry_cmd
54
54
changed_when : false
55
55
ignore_errors : true
56
56
57
57
- name : Download poetry installer
58
58
get_url :
59
- url : https://raw.githubusercontent.com/python-poetry/poetry/master/get -poetry.py
60
- dest : " {{ ansible_env.HOME }}/get -poetry.py"
59
+ url : https://raw.githubusercontent.com/python-poetry/poetry/master/install -poetry.py
60
+ dest : " {{ ansible_env.HOME }}/install -poetry.py"
61
61
mode : " 0400"
62
62
timeout : 20
63
63
when : poetry_cmd is failed
64
64
notify : delete poetry installer
65
65
66
66
- name : Install poetry
67
- command : " python3 {{ ansible_env.HOME }}/get -poetry.py"
67
+ command : " python3 {{ ansible_env.HOME }}/install -poetry.py"
68
68
when : poetry_cmd is failed
69
69
70
70
- name : Check if nox is installed
You can’t perform that action at this time.
0 commit comments