1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

yarn sources: http -> https for #2234

This commit is contained in:
root 2020-02-04 19:08:30 -05:00
parent b15b7933a5
commit 83fe6ca9e0

View file

@ -13,8 +13,8 @@
- name: "Yarn | Ensure Debian package is in sources list"
lineinfile:
dest: /etc/apt/sources.list.d/yarn.list
regexp: 'deb http://dl.yarnpkg.com/debian/ stable main'
line: 'deb http://dl.yarnpkg.com/debian/ stable main'
regexp: 'deb https://dl.yarnpkg.com/debian/ stable main'
line: 'deb https://dl.yarnpkg.com/debian/ stable main'
state: present
- name: "Yarn | Update APT cache"