13 lines
351 B
YAML
13 lines
351 B
YAML
---
|
|
- name: Clone powershell-bin
|
|
git:
|
|
repo: https://aur.archlinux.org/powershell-bin.git
|
|
dest: ~/builds/powershell-bin
|
|
clone: yes
|
|
when: ansible_distribution == 'Archlinux'
|
|
|
|
- name: Make and install powershell-bin
|
|
command:
|
|
cmd: makepkg -cirs --needed
|
|
chdir: ~/builds/powershell-bin
|
|
when: ansible_distribution == 'Archlinux'
|