Skip to content

Commit 2f0bdc0

Browse files
committed
Fix AnsibleCollections parameter
Currently, when the AnsibleCollections parameter in test-operator is used to set multiple collections, it throws an error. To fix this issue, the script should not pass all the collections as one full string. This patch fixes that.
1 parent 8e4b7ab commit 2f0bdc0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

container-images/tcib/base/ansible-tests/run_ansible.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ fi
3030

3131
# Install collections if specified
3232
if [[ -n "${POD_INSTALL_COLLECTIONS:-}" ]]; then
33-
ansible-galaxy collection install "$POD_INSTALL_COLLECTIONS"
33+
ansible-galaxy collection install $POD_INSTALL_COLLECTIONS
3434
fi
3535

3636
# Install collections from requirements.yaml if the file exists

0 commit comments

Comments
 (0)