From d2701369419422d3f522ee45fcbb658a948d5219 Mon Sep 17 00:00:00 2001 From: Dawid Dziurla Date: Wed, 9 Dec 2020 11:36:40 +0100 Subject: [PATCH] main: install collections and roles from galaxy --- main.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.js b/main.js index ea333a7..25390cb 100644 --- a/main.js +++ b/main.js @@ -25,7 +25,8 @@ async function main() { } if (requirements) { - await exec.exec("ansible-galaxy", ["install", "-r", requirements]) + await exec.exec("ansible-galaxy", ["role", "install", "-r", requirements]) + await exec.exec("ansible-galaxy", ["collection", "install", "-r", requirements]) } if (key) {