mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
Wrap in sh to fix prev issue
This commit is contained in:
parent
658e850552
commit
b7aa5109ea
1 changed files with 2 additions and 2 deletions
|
@ -13,13 +13,13 @@
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
- name: Setup for yarn install from its own repo 1/2
|
- name: Setup for yarn install from its own repo 1/2
|
||||||
command: curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
|
command: sh -c 'curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -'
|
||||||
args:
|
args:
|
||||||
chdir: "{{ iiab_base }}"
|
chdir: "{{ iiab_base }}"
|
||||||
when: internet_available
|
when: internet_available
|
||||||
|
|
||||||
- name: Setup for yarn install from its own repo 2/2
|
- name: Setup for yarn install from its own repo 2/2
|
||||||
command: echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
|
command: sh -c 'echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list'
|
||||||
args:
|
args:
|
||||||
chdir: "{{ iiab_base }}"
|
chdir: "{{ iiab_base }}"
|
||||||
when: internet_available
|
when: internet_available
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue